Procházet zdrojové kódy

添加RT UI 模块选择功能

lixiang před 1 rokem
rodič
revize
d8b75084d0

+ 4 - 1
Venus/Framework/RTCore/Backend/BackendSCConfigView.xaml

@@ -9,10 +9,13 @@
     <Grid>
         <Grid.RowDefinitions>
             <RowDefinition Height="35"></RowDefinition>
+            <RowDefinition Height="35"></RowDefinition>
+
             <RowDefinition Height="*"></RowDefinition>
 
         </Grid.RowDefinitions>
         <Button HorizontalAlignment="Left" Margin="20,0,0,0" Command="{Binding ReloadCommand}" Content="Reload" Width="100" Height="30"  ></Button>
-        <control:SCItemEditor Grid.Row="1" ></control:SCItemEditor>
+        <StackPanel x:Name="sp1" Grid.Row="1" Orientation="Horizontal" Margin="0,10,0,0"></StackPanel>
+        <control:SCItemEditor Grid.Row="2" ></control:SCItemEditor>
     </Grid>
 </UserControl>

+ 55 - 13
Venus/Framework/RTCore/Backend/BackendSCConfigView.xaml.cs

@@ -8,6 +8,7 @@ using System.Windows.Controls;
 using System.Windows.Input;
 using Aitex.Core.RT.SCCore;
 using Aitex.Core.UI.MVVM;
+using Aitex.Sorter.Common;
 
 namespace MECF.Framework.RT.Core.Backend
 {
@@ -59,7 +60,7 @@ namespace MECF.Framework.RT.Core.Backend
 
     public class BackendSCConfigViewModel : ViewModelBase
     {
-        private List<SCConfigItem> _scItems;
+        public List<SCConfigItem> _scItems;
 
         public ObservableCollection<NotifiableSCConfigItem> ScItemList { get; set; }
 
@@ -71,6 +72,11 @@ namespace MECF.Framework.RT.Core.Backend
             Init();
             SetScCommand = new DelegateCommand<string>(SetSc);
             ReloadCommand = new DelegateCommand<string>(Reload);
+            _scItems = SC.GetItemList();
+            ScItemList = new ObservableCollection<NotifiableSCConfigItem>();
+
+            //partLoad("System");
+
         }
 
         private void SetSc(string obj)
@@ -91,26 +97,33 @@ namespace MECF.Framework.RT.Core.Backend
 
         public void Reload(string obj)
         {
-            foreach (var item in ScItemList)
-            {
-                item.BoolValue = SC.GetConfigItem(item.PathName).BoolValue;
-                item.IntValue = SC.GetConfigItem(item.PathName).IntValue;
-                item.StringValue = SC.GetConfigItem(item.PathName).StringValue;
-                item.DoubleValue = SC.GetConfigItem(item.PathName).DoubleValue;
-                item.InvokePropertyChanged(nameof(item.Value));
-            }
+            //foreach (var item in ScItemList)
+            //{
+            //    item.BoolValue = SC.GetConfigItem(item.PathName).BoolValue;
+            //    item.IntValue = SC.GetConfigItem(item.PathName).IntValue;
+            //    item.StringValue = SC.GetConfigItem(item.PathName).StringValue;
+            //    item.DoubleValue = SC.GetConfigItem(item.PathName).DoubleValue;
+            //    item.InvokePropertyChanged(nameof(item.Value));
+            //}
         }
 
         void Init()
         {
-            if (_scItems != null) return;
+           
+        }
+        public void partLoad(string module)
+        {
+            if (_scItems == null) return;
             {
-                _scItems = SC.GetItemList();
-                ScItemList = new ObservableCollection<NotifiableSCConfigItem>();
+                ScItemList.Clear(); 
                 int i = 0;
                 foreach (var scItem in _scItems)
                 {
                     i++;
+                    if (scItem.Path.Split('.')[0] != module)
+                    {
+                        continue;
+                    }
                     ScItemList.Add(new NotifiableSCConfigItem()
                     {
                         BoolValue = scItem.BoolValue,
@@ -147,6 +160,7 @@ namespace MECF.Framework.RT.Core.Backend
             this.Loaded += SCConfigView_Loaded;
 
             this.IsVisibleChanged += BackendSCConfigView_IsVisibleChanged;
+            
         }
 
         private void BackendSCConfigView_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
@@ -164,7 +178,35 @@ namespace MECF.Framework.RT.Core.Backend
             {
                 DataContext = new BackendSCConfigViewModel();
             }
+            List<string> modules = new List<string>();
+            foreach (var item in (this.DataContext as BackendSCConfigViewModel)._scItems)
+            {
+                modules.Add(item.Path.Split('.')[0]);
+            }
+
+            modules=modules.Distinct().ToList();
+            int i = 0;
+            modules.ForEach(module => 
+            {
+                RadioButton radioButton = new RadioButton();
+                sp1.Children.Add(
+                   radioButton=new RadioButton() { Content = module ,Margin=new Thickness(10,0,0,0),FontSize=15}
+
+                   );
+                radioButton.Checked += RadioButton_Checked;
+                if (i == 0)
+                {
+                    radioButton.IsChecked = true;
+                    i++;
+                }
+            });
+           
+        }
+
+        private void RadioButton_Checked(object sender, RoutedEventArgs e)
+        {
+            (this.DataContext as BackendSCConfigViewModel).partLoad(((sender as RadioButton).Content.ToString()));
+
         }
- 
     }
 }

+ 1 - 1
Venus/Framework/UICore/UICore.csproj.user

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup>
-    <ProjectView>ShowAllFiles</ProjectView>
+    <ProjectView>ProjectFiles</ProjectView>
   </PropertyGroup>
 </Project>

+ 1 - 1
Venus/Venus_MainPages/Views/OverKepler2200AView.xaml

@@ -333,7 +333,7 @@
 
 
 
-            <ctrls:FlowPipe  Height="8"  Width="36" Canvas.Left="815" Canvas.Top="85"  RotateTransformValue="90" IsReverse="True">
+            <ctrls:FlowPipe  Height="8"  Width="36" Canvas.Left="815" Canvas.Top="85"  RotateTransformValue="90" IsReverse="False">
                 <ctrls:FlowPipe.IsFlowing>
                     <MultiBinding Converter="{StaticResource toBoolMultiValueConverter4}">
                         <Binding Path="PurgeValveIsOpen"/>

+ 1 - 1
Venus/Venus_MainPages/Views/OverKepler2200BView.xaml

@@ -333,7 +333,7 @@
 
 
 
-            <ctrls:FlowPipe  Height="8"  Width="36" Canvas.Left="815" Canvas.Top="85"  RotateTransformValue="90" IsReverse="True">
+            <ctrls:FlowPipe  Height="8"  Width="36" Canvas.Left="815" Canvas.Top="85"  RotateTransformValue="90" IsReverse="False">
                 <ctrls:FlowPipe.IsFlowing>
                     <MultiBinding Converter="{StaticResource toBoolMultiValueConverter4}">
                         <Binding Path="PurgeValveIsOpen"/>