Added Grid Splitter to PreventTransferOverrides section

This commit is contained in:
Brett Hewitson 2021-11-12 13:01:13 +10:00
parent 27a7673ed4
commit 45765b5bb4
4 changed files with 24 additions and 2 deletions

View file

@ -741,6 +741,9 @@
<setting name="SectionPreventTransferOverridesEnabled" serializeAs="String">
<value>True</value>
</setting>
<setting name="PreventTransferOverrideGridHeight" serializeAs="String">
<value>400</value>
</setting>
</ServerManagerTool.Config>
</userSettings>
</configuration>

View file

@ -12,7 +12,7 @@ namespace ServerManagerTool {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.0.3.0")]
public sealed partial class Config : global::System.Configuration.ApplicationSettingsBase {
private static Config defaultInstance = ((Config)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Config())));
@ -2563,5 +2563,17 @@ namespace ServerManagerTool {
this["SectionPreventTransferOverridesEnabled"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("400")]
public global::System.Windows.GridLength PreventTransferOverrideGridHeight {
get {
return ((global::System.Windows.GridLength)(this["PreventTransferOverrideGridHeight"]));
}
set {
this["PreventTransferOverrideGridHeight"] = value;
}
}
}
}

View file

@ -716,5 +716,8 @@
<Setting Name="SectionPreventTransferOverridesEnabled" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="PreventTransferOverrideGridHeight" Type="System.Windows.GridLength" Scope="User">
<Value Profile="(Default)">400</Value>
</Setting>
</Settings>
</SettingsFile>

View file

@ -5622,7 +5622,9 @@
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition Height="{Binding CurrentConfig.PreventTransferOverrideGridHeight, ElementName=SettingsControl, FallbackValue=400, Mode=TwoWay}" MinHeight="200"/>
<RowDefinition/>
<RowDefinition Height="1" MinHeight="1"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
@ -5632,7 +5634,7 @@
<TextBlock Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Margin="5" Text="{DynamicResource ServerSettings_PreventTransferOverrides_WarningLabel}" TextWrapping="Wrap" VerticalAlignment="Center" FontWeight="Bold"/>
<GroupBox Grid.Row="2" Grid.Column="0" HorizontalAlignment="Stretch" Height="400" Style="{StaticResource GroupBoxStyle}">
<GroupBox Grid.Row="2" Grid.Column="0" HorizontalAlignment="Stretch" Style="{StaticResource GroupBoxStyle}">
<GroupBox.Header>
<StackPanel Orientation="Horizontal">
<Label Content="{DynamicResource ServerSettings_PreventTransferOverrides_ItemsLabel}"/>
@ -5702,6 +5704,8 @@
</DataGrid.Columns>
</DataGrid>
</GroupBox>
<GridSplitter Grid.Row="3" Grid.Column="0" Height="5" ShowsPreview="True" HorizontalAlignment="Stretch" VerticalAlignment="Center" Opacity="0"/>
</Grid>
</Expander>