我想知道,是否可以从Windows Phone 8 Toolkit中更精确地设置CustomMessageBox的样式?
在这种情况下,我希望标题和实际消息/按钮文本/边框的前景颜色不同。
我也可以在XAML中定义Box吗?
这不应该太费力。您所要做的就是子类CustomMessageBox
,为单独的前景色添加依赖属性,然后修改默认的控件模板。(您将看到默认模板对标题、标题、消息和按钮使用相同的Foreground
属性。)
作为一个例子,让我们以标题颜色为例。首先添加一个依赖属性:
public class ExtendedCustomMessageBox : CustomMessageBox
{
public Brush TitleForeground
{
get { return (Brush)GetValue(TitleForegroundProperty); }
set { SetValue(TitleForegroundProperty, value); }
}
public static readonly DependencyProperty TitleForegroundProperty =
DependencyProperty.Register("TitleForeground", typeof(Brush), typeof(ExtendedCustomMessageBox), null);
public CustomMessage()
: base()
{
DefaultStyleKey = typeof(CustomMessageBox);
}
}
现在修改控件模板的相应部分。使用TemplateBinding
引用新属性:
<TextBlock
x:Name="TitleTextBlock"
Text="{TemplateBinding Title}"
Foreground="{TemplateBinding TitleForeground}"
Visibility="Collapsed"
Margin="24,16,24,-6"
FontFamily="{StaticResource PhoneFontFamilySemiBold}"/>
(请注意,您可以在WP8工具包下载的ThemesGeneric.xaml
文件中找到完整的控制模板。只需将其复制粘贴到项目的资源中,然后进行修改。)