这可能听起来像一个奇怪的请求,我不确定它是否真的有可能,但我有一个Silverlight DataPager控件,其中显示“Page 1 of X”,我想更改“Page”文本来说出某些内容不同。
可以这样做吗?
答案 0 :(得分:0)
在DataPager样式中,默认情况下有一个名称为CurrentPagePrefixTextBlock的部分,其值为“Page”。 您可以参考http://msdn.microsoft.com/en-us/library/dd894495(v=vs.95).aspx了解更多信息。
其中一个解决方案是扩展DataPager
以下是执行该操作的代码
public class CustomDataPager:DataPager
{
public static readonly DependencyProperty NewTextProperty = DependencyProperty.Register(
"NewText",
typeof(string),
typeof(CustomDataPager),
new PropertyMetadata(OnNewTextPropertyChanged));
private static void OnNewTextPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
{
var newValue = (string)e.NewValue;
if ((sender as CustomDataPager).CustomCurrentPagePrefixTextBlock != null)
{
(sender as CustomDataPager).CustomCurrentPagePrefixTextBlock.Text = newValue;
}
}
public string NewText
{
get { return (string)GetValue(NewTextProperty); }
set { SetValue(NewTextProperty, value); }
}
private TextBlock _customCurrentPagePrefixTextBlock;
internal TextBlock CustomCurrentPagePrefixTextBlock
{
get
{
return _customCurrentPagePrefixTextBlock;
}
private set
{
_customCurrentPagePrefixTextBlock = value;
}
}
public CustomDataPager()
{
this.DefaultStyleKey = typeof(DataPager);
}
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
CustomCurrentPagePrefixTextBlock = GetTemplateChild("CurrentPagePrefixTextBlock") as TextBlock;
if (NewText != null)
{
CustomCurrentPagePrefixTextBlock.Text = NewText;
}
}
}
现在通过在此CustomDataPager中设置NewText属性,我们可以获得我们想要的任何文本而不是“Page”
xmlns:local =“clr-namespace:包含CustomDataPager的程序集”
<local:CustomDataPager x:Name="dataPager1"
PageSize="5"
AutoEllipsis="True"
NumericButtonCount="3"
DisplayMode="PreviousNext"
IsTotalItemCountFixed="True" NewText="My Text" />
现在显示“我的文字”而不是“页面”
但其他部分也需要定制,以使其正常工作!!
希望这能回答你的问题