这听起来像是一个奇怪的请求,我不确定它是否真的可行,但我有一个 Silverlight DataPager 控件,其中显示“X 页的第 1 页”,我想更改“页面”文本以表达不同的内容。
这可以做到吗?
这听起来像是一个奇怪的请求,我不确定它是否真的可行,但我有一个 Silverlight DataPager 控件,其中显示“X 页的第 1 页”,我想更改“页面”文本以表达不同的内容。
这可以做到吗?
在 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:Assembly 其中包含 CustomDataPager"
<local:CustomDataPager x:Name="dataPager1"
PageSize="5"
AutoEllipsis="True"
NumericButtonCount="3"
DisplayMode="PreviousNext"
IsTotalItemCountFixed="True" NewText="My Text" />
现在它显示“我的文本”而不是“页面”。
但其他部分也需要定制才能正常工作!!
希望这能回答你的问题