如何将控件定义为资源,然后将其放在表单上?

时间:2011-07-21 13:09:37

标签: c# .net wpf xaml resources

我想做这样的事情:

<Window x:Class="WpfApplication10.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <Button x:Key="butt" Content="Yeah!" />
    </Window.Resources>
    <Grid>
        <!-- Place button here -->
    </Grid>
</Window>

怎么做?我想在单个文件中创建小用户控件库。

1 个答案:

答案 0 :(得分:2)

<Grid>
    <StaticResource ResourceKey="butt"/>
</Grid>

应该工作......