我想做这样的事情:
<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>
怎么做?我想在单个文件中创建小用户控件库。
答案 0 :(得分:2)
<Grid>
<StaticResource ResourceKey="butt"/>
</Grid>
应该工作......