如何在XAML中创建和设置新的实例?

时间:2016-10-13 10:21:54

标签: c# wpf xaml

所以我有一个类,我需要在XAML中设置这个类的新实例? 有人可以对此有所了解吗?

1 个答案:

答案 0 :(得分:2)

首先添加:

xmlns:yc="clr-namespace:WpfApplication1"

然后在Window.Resources中你可以像这样一个新的类实例:

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:yc="clr-namespace:WpfApplication1"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow">
<Window.Resources>
    <yc:Class1 x:Key="myInstance" />
</Window.Resources>
<Grid>
    ....
</Grid>

WpfApplication1更改为项目名称。