私の wpfapplication では、 Color as setting を含む設定ファイルを追加しました。
MySetting.settings
Name Type Value
myColor System.Windows.Media.Color #FFFFFF
したがって、自動生成されたコードは次のようになります。
MySettings.Desinger.cs
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("#FFFFFFFF")]
public global::System.Windows.Media.Color myColor {
get {
return ((global::System.Windows.Media.Color)(this["myColor"]));
}
set {
this["myColor"] = value;
}
}
設定ウィンドウで設定したいこの値。これは私のxamlコードです:
configWindow.xaml
<Window x:Class="myApp.configWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:properties="clr-namespace:myApp.Properties"
xmlns:converter="clr-namespace:myApp.Converter"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Title="myApp" Height="557" Width="626">
<Window.Resources>
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
<converter:myColorConverter x:Key="ColorConverter"/>
<properties:MySettings x:Key="config"/>
<ObjectDataProvider ObjectInstance="{x:Type Colors}" MethodName="GetProperties" x:Key="colorPropertiesOdp" />
</Window.Resources>
<Grid Height="524" Width="615" DataContext="{StaticResource config}">
<TabControl Height="508" HorizontalAlignment="Left" Name="tabControl1" VerticalAlignment="Top" Width="616" BorderThickness="0" Margin="1,11,0,0">
<TabItem Header="options" Name="tabItemOptions">
<Grid Height="484">
<GroupBoxHeight="330" Margin="6,149,15,0" Name="groupBox2" >
<Grid Height="313">
<ComboBox x:Name="comboBoxMyColor" Height="23" HorizontalAlignment="Left" Margin="302,34,0,0" VerticalAlignment="Top" Width="120" ItemsSource="{Binding Source={StaticResource colorPropertiesOdp}}" SelectedItem="{Binding Path=Default.myColor, Converter={StaticResource ColorConverter}, Mode=TwoWay}">
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Label Background="{Binding Path=Name}" Content="{Binding Path=Name}" Height="{Binding ActualHeight, ElementName=comboBoxNotificationColor}" Width="{Binding ActualWidth, ElementName=comboBoxNotificationColor}"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
</Grid>
</GroupBox>
</Grid>
</TabItem>
</TabControl>
</Grid>
しかし、色を変更しようとすると、コンボボックスで値 (「白」など) を選択できますが、構成は変更されません。にブレークポイントを設定するとMySettings.Desinger.cs -> myCOlor -> set { ... }
、到達しません。私のせいはどこですか?