全て -
この問題についての洞察が必要です。プロジェクトの 1 つで問題を切り分けるために、サンプル プロジェクトを作成しました。モデルの特定の値 (Int/String/Enum) に基づいて Border の背景を設定しようとしています。
私が抱えている問題は次のとおりです。
1) DataTrigger Binding のソースが設定されていると思いますが、まだこのエラーが発生しています: personId プロパティが「オブジェクト」「文字列」に見つかりません。BindingExpression:Path=personId; DataItem='String' (HashCode=1896530089); ターゲット要素は 'Border' (Name=''); ターゲット プロパティは 'NoTarget' (タイプ 'Object') です
2)概念を機能させるためだけに、int(または文字列)でこれを行っていました。しかし現実的には、これを Enum 値にする必要があります。これに関する提案も役立ちます。
コード スニペットは次のとおりです。
Person.cs
public class Person
{
public int personId { get; set; }
public string personName { get; set; }
public Gender personType { get; set; }
public enum Gender
{
Male,
Female
}
}
PersonViewModel.cs
public class PersonViewModel
{
private ObservableCollection<Person> _people;
public ObservableCollection<Person> people
{
get
{
return _people;
}
}
public PersonViewModel()
{
_people = new ObservableCollection<Person>()
{
new Person()
{
personId = 1,
personName = "John",
personType = Person.Gender.Male
},
new Person()
{
personId = 1,
personName = "Mary",
personType = Person.Gender.Female
},
};
}
}
PersonView.xaml.cs
public PersonView()
{
InitializeComponent();
var personvm = new PersonViewModel();
DataContext = personvm;
}
PersonView.xaml
<Window.Resources>
<Style x:Key="BorderGradient" TargetType="{x:Type Border}">
<Style.Triggers>
<DataTrigger Binding="{Binding Source=people, Path=personId}" Value="1">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.511,0.957">
<GradientStop Color="LightGray" Offset="0.55" />
<GradientStop Color="Black" Offset="1.3" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
</DataTrigger>
<DataTrigger Binding="{Binding Source=people, Path=personId}" Value="2">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.511,0.957">
<GradientStop Color="LightGray" Offset="0.55" />
<GradientStop Color="Yellow" Offset="1.3" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Border CornerRadius="15,15,15,15" Style="{StaticResource BorderGradient}" >
<Grid Width="Auto" MinWidth="750" Height="Auto" MinHeight="600">
<!-- Logic in VM where visibility would be set through VM -->
<StackPanel Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Top" Visibility="To be set" >
<loc:MaleView/>
</StackPanel>
<StackPanel Grid.Row="1" HorizontalAlignment="Center" Visibility=" to be set">
<loc:FemaleView />
</StackPanel>
</Grid>
</Border>