我知道在 XAML 中可以使用代码创建数据模板,这样您就可以根据自己的喜好设置控件的样式和绑定:
<ListBox x:Name="statusBox">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid x:Name="ListBoxItemLayout" >
<StackPanel>
<TextBlock x:Name="time" Style="{StaticResource PhoneTextNormalStyle}" Margin="0" Width="462" Text="{Binding time}" FontSize="16" FontWeight="Bold"/>
<TextBlock x:Name="status" Style="{StaticResource PhoneTextNormalStyle}" Margin="0" Width="462" Text="{Binding status}" TextWrapping = "Wrap" Height="85" HorizontalAlignment="Left" VerticalAlignment="Top"/>
</StackPanel>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
public class status
{
public string time{ get; set; }
public string statusText{ get; set; }
}
List<status> list = new List<status>();
status aStatus = new status() { time="3:00pm", statusText="this is a status" };
list.Add(aStatus);
statusBox.ItemsSource = list;
但是,在我最新的项目中,我有一个动态添加项目/页面的数据透视控件,因此我无法在页面上定义任何 xaml。有什么解决方法吗?
我想要做的是仅通过 c# 代码创建一个数据模板,这样我就可以在我的应用程序中实例化一个新控件。
List<status> list = new List<status>();
statusBox lb = new statusBox(); // <-------------------- look here
status aStatus = new status() { time="3:00pm", statusText="this is a status" };
list.Add(aStatus);
list.Add(aStatus);
lb.ItemsSource = list;
PivotItem pi = new PivotItem();
pi.Content = lb;
Pivot pivot = pivot1;
pivot.Items.Add(pi);
是否可以通过这种方式创建自定义控件?如果是这样,如何?