我尝试使用数据绑定使用WPF在Visual C#中为列表框创建自定义样式。
我有以下课程:
public class Page
{
public readonly DateTime Sent;
public readonly string PagerID;
public readonly string Message;
public readonly string Status;
private Page(DateTime sent, string pagerID, string message, string status)
{
Sent = sent;
PagerID = pagerID;
Message = message;
Status = status;
}
public static List<Page> GetPages()
{
...
}
public override string ToString()
{
return Sent + ": " + PagerID + " - " + Message;
}
}
以下WPF .xaml:
<Window x:Class="KentBox.utilities.RecentPages"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:KentBox.utilities"
Title="RecentPages" Height="640" Width="480">
<Window.DataContext>
<ObjectDataProvider x:Name="Provider" ObjectType="{x:Type local:Page}" MethodName="GetRecentPages" />
</Window.DataContext>
<Window.Resources>
<Style TargetType="{x:Type ListBox}">
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<Border>
<TextBlock Text="{Binding Message}" HorizontalAlignment="Stretch"></TextBlock>
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
<ListBox ItemsSource="{Binding}" />
</Window>
如果我将TextBlock Text更改为=&#34; {Binding}&#34;而不是{Binding Message},我可以使用重写的ToString()内容显示页面。
我无法弄清楚如何使Binding只显示页面的Message部分。 Visual Studio告诉我
无法解析财产&#39;消息&#39;在“System.Windows.Data.ObjectDataProvider&#39;
类型的数据上下文中
我无法弄清楚如何更改所述数据上下文的类型。有人能指出我正确的方向吗?
答案 0 :(得分:1)
消息需要是公共财产。它需要得到一个。
public string Message { get; private set; }