Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 2890d183 authored by Harald Martini's avatar Harald Martini
Browse files

removed actual modal data setting from multistep gui

parent 3e522177
No related branches found
No related tags found
No related merge requests found
......@@ -131,17 +131,25 @@ namespace VECTO3GUI2020.ViewModel.Implementation
public bool ActualModalData
{
get => _actualModalData;
set
{
if (SetProperty(ref _actualModalData, value)) {
_settings.ActualModalData = value;
_settings.Save();
get => false;
set{
}
}
}
//public bool ActualModalData
//{
// get => _actualModalData;
// set
// {
// if (SetProperty(ref _actualModalData, value)) {
// _settings.ActualModalData = value;
// _settings.Save();
// }
// }
//}
public bool Validate
{
get => _validate;
......
......@@ -76,14 +76,14 @@
<Label Grid.Row="1" Grid.Column="2">Write Modal Results</Label>
<CheckBox Grid.Row="1" Grid.Column="3" IsChecked="{Binding WriteModalResults}"></CheckBox>
<Label Grid.Row="2" Grid.Column="0">Validate</Label>
<CheckBox Grid.Row="2" Grid.Column="1" IsChecked="{Binding Validate}"></CheckBox>
<Label Grid.Row="1" Grid.Column="0">Validate</Label>
<CheckBox Grid.Row="1" Grid.Column="1" IsChecked="{Binding Validate}"></CheckBox>
<Label Grid.Row="0" Grid.Column="2">Actual Modal Data</Label>
<CheckBox Grid.Row="0" Grid.Column="3" IsChecked="{Binding ActualModalData}"></CheckBox>
<!--<Label Grid.Row="0" Grid.Column="2">Actual Modal Data</Label>
<CheckBox Grid.Row="0" Grid.Column="3" IsChecked="{Binding ActualModalData}"></CheckBox>-->
<Label Grid.Row="1" Grid.Column="0">ModalResults1Hz</Label>
<CheckBox Grid.Row="1" Grid.Column="1" IsChecked="{Binding ModalResults1Hz}"></CheckBox>
<Label Grid.Row="0" Grid.Column="2">ModalResults1Hz</Label>
<CheckBox Grid.Row="0" Grid.Column="3" IsChecked="{Binding ModalResults1Hz}"></CheckBox>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment