在代码背后更改应用程序资源属性

时间:2012-05-30 18:13:26

标签: c# silverlight

我在Silverlight(Form.xaml)中有一个用户控件,它使用标签来显示数据。目前,我在app.xaml中使用模板控制这些标签的前景色和可见性,如下所示:

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"
             x:Class="TestSilverlight.App"
             >
    <Application.Resources>

        <ControlTemplate x:Key="DataLabel" x:Name="DataLabel" TargetType="sdk:Label">
            <sdk:Label Visibility="Visible" Foreground="White" Content="{TemplateBinding Content}"></sdk:Label>
        </ControlTemplate>

    </Application.Resources>
</Application>

这是Form.xaml中标签的xaml:

<sdk:Label Template="{StaticResource DataLabel}" HorizontalAlignment="Left" Margin="140,53,0,0" VerticalAlignment="Top" Content="Ground" FontSize="13.333" Width="138"/>

当我点击Form.xaml的编辑按钮时,我想隐藏这些标签。但是,我无法弄清楚如何更改此模板后面代码中的visibility属性。

    private void EditButton_Click(object sender, RoutedEventArgs e)
    {

        // Place code to alter template properties here...

    }

关于如何做到这一点的任何想法?非常感谢你的帮助和意见。

1 个答案:

答案 0 :(得分:1)

你可以尝试类似的东西(使用WPF工作):

    <ControlTemplate x:Key="DataLabel" x:Name="DataLabel" TargetType="sdk:Label">
        <sdk:Label x:Name="myLabelTemplate" Visibility="Visible" Foreground="White" Content="{TemplateBinding Content}"></sdk:Label>
    </ControlTemplate>

(我只给了controlTemplate里面的标签名称)

<sdk:Label x:Name="myLabel" Template="{StaticResource DataLabel}" HorizontalAlignment="Left" Margin="140,53,0,0" VerticalAlignment="Top" Content="Ground" FontSize="13.333" Width="138"/>

(我刚给xaml内的标签命名)

        var res = (FindResource("DataLabel") as ControlTemplate).FindName("myLabelTemplate", myLabel);
        if (res != null && res is FrameworkElement)
            (res as FrameworkElement).Visibility = Visibility.Hidden;

我没有检查FindResource是否返回不为null的内容,等等(我认为你可以处理它;)

但是,如果我是你,我不会使用app资源来放置用户控件的特定资源(我会在userControl的xaml中使用模板(作为附加资源),甚至不会'如果你想修改其中的属性,则根本不使用模板:如果管理不善,可能会因为空指针异常而导致应用程序崩溃)