我对silverlight完全陌生,我有一个任务要修改它。我的问题非常简单(如果在asp.net webforms中完成)。 基本上,在网格中,我想将年份附加到这样的东西上。
Jan + "-" + DateTime.Now.Year.ToString()
Feb + "-" + DateTime.Now.Year.ToString()
etc..etc ..
xaml看起来像这样
<Grid x:Name="ContentGrid" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="0">
<Grid.Resources>
<DataTemplate x:Key="mykey1">
<Grid >....</Grid>
</DataTemplate>
<DataTemplate x:Key="mykey2">
<Grid >....</Grid>
</DataTemplate>
<DataTemplate x:Key="mykey3">
<Grid >
<StackPanel Orientation="Vertical">
<Border BorderBrush="{StaticResource LogicaPebbleBlackBrush}" BorderThickness="1">
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal" Style="{StaticResource HeaderStackPanel}">
<TextBlock Style="{StaticResource HeaderTextBlock}" Text="Jan-2013" Width="75" TextAlignment="Center"/>
<TextBlock Style="{StaticResource HeaderTextBlock}" Text="Feb-2013" Width="75" TextAlignment="Center"/>
</StackPanel>
</StackPanel>
</Grid>
</DataTemplate>
</ Grid>
</DataTemplate>
我只想让这一年充满活力,因此每年都在变化。请帮忙。
答案 0 :(得分:0)
我不知道这是否可以直接在XAML中完成。
最好使用绑定。在Silverlight中,您将大多数数据源绑定到代码隐藏中的属性(即ViewModel)。
简而言之:
设置DataContext后,可以按如下方式编写XAML:
<TextBlock Text="{Binding Path=Year, Mode=OneWay}" />
您的ViewModel属性如下所示:
public class ViewModel : INotifyPropertyChanged
{
private DateTime _year = DateTime.Now;
public DateTime Year
{
get { return _year; } // <--- append whatever here or in the setter
set
{
_year = value;
if( this.PropertyChanged != null )
{
this.PropertyChanged( this, new PropertyChangedEventArgs( "Year" ) );
}
}
}
...
}
答案 1 :(得分:0)
这可能会对你有所帮助。这只是xaml:
<Grid.Resources>
<System:DateTime x:Key="DateTimeDataSource"/>
</Grid.Resources>
<TextBlock DataContext="{Binding Source={StaticResource DateTimeDataSource}}"
Text="{Binding Today.Year}">
</TextBlock>
确保添加此命名空间:
xmlns:System="clr-namespace:System;assembly=mscorlib"
您也可以显示其他DateTime属性:Now.Day,Today.Month等
答案 2 :(得分:0)
我重读了你的问题,我认为你需要做这样的事情。 由于您在网格中工作,因此可以命名您的文本块。
<TextBlock Style="{StaticResource HeaderTextBlock}" x:Name="JanTB" Width="75" TextAlignment="Center"/>
在后面的代码中,将文本放在文本块中就足够了。
JanTB.Text = "Jan-" + Datetime.now.Year.ToString();
我希望这能解决你的问题。