diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-04-27 17:49:39 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-04-27 17:49:39 +0300 |
| commit | 252da88f11fae37ff27da293d1e919640ad54e68 (patch) | |
| tree | 50b49a0c9adf513eeb47a6df9456c806974cef9a /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views | |
| parent | 4412c2ad69064eeb37a002eaa388b161efdc6410 (diff) | |
| download | Tango-252da88f11fae37ff27da293d1e919640ad54e68.tar.gz Tango-252da88f11fae37ff27da293d1e919640ad54e68.zip | |
Color calibration tab - Apply to RML , export data to excel file.
Related Work Items: #6482
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/ColorCalibrationView.xaml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/ColorCalibrationView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/ColorCalibrationView.xaml index 0d8acbc53..e853e2075 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/ColorCalibrationView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/ColorCalibrationView.xaml @@ -39,7 +39,20 @@ <commonControls:MachineView Width="500" Margin="0 40 0 0" DataContext="{Binding Machine}" /> <StackPanel Margin="40 40"> <TextBlock FontSize="16">MEDIA</TextBlock> - <ComboBox ItemsSource="{Binding Rmls}" SelectedItem="{Binding SelectedRML}" FontSize="16" IsEnabled="{Binding Machine,Converter={StaticResource NullObjectToBooleanConverter}}" Background="Transparent" Style="{StaticResource TransparentComboBoxStyle}" > + + <controls:SearchComboBox ItemsSource="{Binding Rmls}" SelectedItem="{Binding SelectedRML}" FontSize="16" IsEnabled="{Binding Machine,Converter={StaticResource NullObjectToBooleanConverter}}" HorizontalContentAlignment="Stretch" SearchProperty="Name" > + + <ComboBox.ItemTemplate> + <DataTemplate> + <StackPanel> + <TextBlock Text="{Binding Name}" FontWeight="Bold" FontStyle="Italic" Foreground="{StaticResource MainWindow.Foreground}"></TextBlock> + <TextBlock FontSize="11" Text="{Binding Manufacturer}" Foreground="{StaticResource GrayBrush}"></TextBlock> + </StackPanel> + </DataTemplate> + </ComboBox.ItemTemplate> + </controls:SearchComboBox> + + <!--<ComboBox ItemsSource="{Binding Rmls}" SelectedItem="{Binding SelectedRML}" FontSize="16" IsEnabled="{Binding Machine,Converter={StaticResource NullObjectToBooleanConverter}}" Background="Transparent" Style="{StaticResource TransparentComboBoxStyle}" > <ComboBox.ItemTemplate> <DataTemplate> @@ -49,7 +62,7 @@ </StackPanel> </DataTemplate> </ComboBox.ItemTemplate> - </ComboBox> + </ComboBox>--> <TextBlock FontSize="16" Margin="0 40 0 0">LIQUID FACTORS</TextBlock> |
