0
我有一個WrapPanel來顯示一些元素。但我想用DataTemplate來顯示它們。 這裏是WrapPanel如何使用WrapPanel的DataTemplate
<WrapPanel Margin="10,57,12,10" x:Name="wrp1">
<WrapPanel.Resources>
<DataTemplate DataType="{x:Type local:DateItem}">
<Grid VerticalAlignment="Top" HorizontalAlignment="Stretch" Width="250" Height="300" Background="Blue">
<Label Content="{Binding Path=DateString}" FontSize="20" Cursor="Hand" Foreground="White" Background="Red" FontWeight="Bold" VerticalAlignment="Bottom" HorizontalAlignment="Left" Height="38" VerticalContentAlignment="Center" Padding="5,0,5,0"/>
</Grid>
</DataTemplate>
</WrapPanel.Resources>
</WrapPanel>
我的XAML代碼這是代碼DateItem
public class DateItem : UIElement
{
public string DateString { get; set; }
}
當窗口初始化,我創建一個DateItem與DateString參數,並補充說,到WrapPanel作爲孩子。
DateItem di = new DateItem();
di.DateString = "28.04.2014";
wrp1.Children.Add(di);
我覺得一切都很好,但包裝面板不顯示任何內容:(
你能幫我嗎?
嗨,謝謝你的答案,但它不工作。或者我無法使它工作。我還有一件事,我會多次添加DateItem。我怎樣才能做到這一點? – cKNet 2014-09-21 15:20:30
第一項絕對適合我。無論如何,如果你仍然希望它作爲控件渲染,你需要默認樣式。查看第二種方法的答案更新。 – 2014-09-21 15:21:50
對不起,第一個工作。 好的,我如何使用第一個示例多次添加DateItem? – cKNet 2014-09-21 15:26:39