首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

WPF,请教这个资源如何引用

2013-11-06 
WPF,请问这个资源怎么引用?Window.ResourcesButton x:Keyaa BackgroundRed//Window.Resources

WPF,请问这个资源怎么引用?


<Window.Resources>
    <Button x:Key="aa" Background="Red"/>
</Window.Resources>
<Grid>
        
</Grid>


上面有一个button资源,请问,在Grid里面,如何引用资源,并设置button的Foreground属性。
[解决办法]
你应该这么干:

 <Window.Resources>
        <!--<Button x:Key="aa" Background="Red" -->
        <Style TargetType="{x:Type Button}">
            <Setter Property="Background" Value="Red"></Setter>
        </Style>
    </Window.Resources>
    <Grid>
        <Button  Content="Test" ></Button>
    </Grid>

热点排行