嗨,我正在编辑日历。现在,我需要用我最喜欢的日子填写日历。
这就是我的尝试,这就是输出
object IValueConverter.Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
int[] days = new int[] { 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 };
return days;
}
这是xaml:
<ContentPresenter
x:Name="NormalText"
Content="{Binding Converter={StaticResource GeorgianToPersianDate}}"
/>
更新:
<Style x:Key="CalendarDayButtonStyle" TargetType="CalendarDayButton">
<Setter Property="MinWidth" Value="10" />
<Setter Property="MinHeight" Value="10" />
<Setter Property="FontSize" Value="12" />
<Setter Property="Width" Value="32" />
<Setter Property="Height" Value="32" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="CalendarDayButton">
<ControlTemplate.Resources>
<local:GeorgianToPersianDate x:Key="GeorgianToPersianDate" />
</ControlTemplate.Resources>
<Grid>
<Rectangle
x:Name="TodayBackground"
Fill="{DynamicResource DangerBrush}"
Opacity="0"
RadiusX="16"
RadiusY="16" />
<Rectangle
x:Name="SelectedBackground"
Fill="{DynamicResource PrimaryBrush}"
Opacity="0"
RadiusX="16"
RadiusY="16" />
<ContentPresenter
x:Name="NormalText"
Content="{Binding Converter={StaticResource GeorgianToPersianDate}}"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}">
<TextElement.Foreground>
<SolidColorBrush Color="{DynamicResource PrimaryTextColor}" />
</TextElement.Foreground>
</ContentPresenter>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualStateGroup.Transitions>
<VisualTransition GeneratedDuration="0:0:0.1" />
</VisualStateGroup.Transitions>
<VisualState x:Name="Normal" />
<VisualState x:Name="Disabled">
<Storyboard>
<DoubleAnimation
Storyboard.TargetName="NormalText"
Storyboard.TargetProperty="Opacity"
To=".35"
Duration="0" />
</Storyboard>
</VisualState>
</VisualStateGroup>
<VisualStateGroup x:Name="SelectionStates">
<VisualStateGroup.Transitions>
<VisualTransition GeneratedDuration="0" />
</VisualStateGroup.Transitions>
<VisualState x:Name="Unselected" />
<VisualState x:Name="Selected">
<Storyboard>
<DoubleAnimation
Storyboard.TargetName="SelectedBackground"
Storyboard.TargetProperty="Opacity"
To="1"
Duration="0:0:.2" />
<ColorAnimation
Storyboard.TargetName="NormalText"
Storyboard.TargetProperty="(TextElement.Foreground).(SolidColorBrush.Color)"
To="White"
Duration="0" />
</Storyboard>
</VisualState>
</VisualStateGroup>
<VisualStateGroup x:Name="ActiveStates">
<VisualStateGroup.Transitions>
<VisualTransition GeneratedDuration="0" />
</VisualStateGroup.Transitions>
<VisualState x:Name="Active" />
<VisualState x:Name="Inactive">
<Storyboard>
<ColorAnimation
Storyboard.TargetName="NormalText"
Storyboard.TargetProperty="(TextElement.Foreground).(SolidColorBrush.Color)"
To="{DynamicResource ThirdlyTextColor}"
Duration="0" />
</Storyboard>
</VisualState>
</VisualStateGroup>
<VisualStateGroup x:Name="DayStates">
<VisualStateGroup.Transitions>
<VisualTransition GeneratedDuration="0" />
</VisualStateGroup.Transitions>
<VisualState x:Name="RegularDay" />
<VisualState x:Name="Today">
<Storyboard>
<DoubleAnimation
Storyboard.TargetName="TodayBackground"
Storyboard.TargetProperty="Opacity"
To="1"
Duration="0" />
<ColorAnimation
Storyboard.TargetName="NormalText"
Storyboard.TargetProperty="(TextElement.Foreground).(SolidColorBrush.Color)"
To="White"
Duration="0" />
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
这是我的xaml,我只想删除dafault日子并添加自己的日子,我想我可以使用转换器来做到这一点。如果我无法使用转换器,该如何更改日期?
答案 0 :(得分:1)
首先,让我们开始进行绑定。
ContentPresenter
通过Content
属性显示其UI。这只是一个object
。 XAML有一些将某些对象转换为视觉效果的奇特方法,但是一旦失败,它只会在该ToString()
上调用object
并显示文本。看着您的IValueConverter
,您将返回一个int[]
,而Content
变成了那个。您提供的代码为何不显示System.Int32[]
的原因仍然是未知的。
因此,让我们来看看您的IValueConverter
。
您将返回array
(int
)中的int[]
。现在,当您致电System.Int32[]
时就是ToString()
。
如果Template
是一个包含多个项目的类型,例如ItemsControl
,则自动分配ItemsSource
会执行相同的操作,但对数组中的每个项目都是如此。
IValueConverter
的使用不正确。它没有转换任何东西,也不是转换器的用途。您应该只对ViewModel或任何地方的属性进行纯绑定,但不要为此使用IValueConverter
。
当您已经有一些绑定时,将使用转换器。但不想使用该绑定的结果,而是希望将该结果“转换”为其他内容。
例如:如果您要绑定到一个返回了int
值但希望将该int
转换为相关的enum
名称的属性;那么您将编写一个转换器,该转换器读取int
并返回相关的enum
名称。
修复:
很难提供您提供的XAML,但是知道有几种解决方法。第一;您至少需要一个除数组以外的模板作为绑定,以按原样显示它们。查看您的视图图像,我认为情况并非如此。我相信您已经将ContentControl
放在模板中了;并且该模板是另一个控件的ItemsSource
的一部分。如果是这种情况,那么您将ItemsSource
绑定到数组;并在ContentPresenter
中像这样绑定到它的数据:
<ContentPresenter x:Name="NormalText"
Content="{Binding}"/>
所有这些;在看不到整个XAML的情况下,我无法以正确的方式为您提供明确的解决方案。
更新后,我相信问题在于您正在设置CalenderButton
的样式,并在其中将Content
分配给该数组。像上面一样写绑定;然后自定义Style
Calendar
并将绑定设置为数组。我从来没有做过日历样式,但是通过查看它可以看出Calendar
具有panel
和ItemsSource
的某种风格,而这些项目的模板是{{1} }。换句话说,日期是从日历中分配给按钮的,而您正尝试直接从按钮中进行选择。