aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-18 05:05:01 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-18 05:05:01 +0200
commit0f41178c4f72aef58a1818f9bbaf2dbc9eb0cdf7 (patch)
tree379ef3ec6a4781ae0dcada8e7c233e80761be6c2 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml
parent8dbf9aea30b685b56b2eae2aa490440e3d46d725 (diff)
downloadTango-0f41178c4f72aef58a1818f9bbaf2dbc9eb0cdf7.tar.gz
Tango-0f41178c4f72aef58a1818f9bbaf2dbc9eb0cdf7.zip
Prototypes Improved.
HW version dropped from prototype. Added Light Color Formula. Cleaned some machine configuration types OS Version, Display Panel Version etc... UPdated Local PPC Schema and Data.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml
index f69606e29..8b3851036 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml
@@ -62,6 +62,11 @@
<TextBlock Margin="0 20 0 0" FontSize="10">Name</TextBlock>
<TextBox Margin="0 2 0 0" Text="{Binding Name,UpdateSourceTrigger=PropertyChanged}"></TextBox>
+
+ <StackPanel Margin="0 20 0 0" Visibility="{Binding IsNewMachine,Converter={StaticResource BooleanToVisibilityConverter}}">
+ <TextBlock FontSize="10">Hardware Version</TextBlock>
+ <ComboBox Margin="0 2 0 0" ItemsSource="{Binding HardwareVersions}" SelectedItem="{Binding SelectedHardwareVersion}" DisplayMemberPath="FullName"></ComboBox>
+ </StackPanel>
</StackPanel>
</Grid>
</DockPanel>