所以我有一个类,我需要在XAML中设置这个类的新实例? 有人可以对此有所了解吗?
答案 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
更改为项目名称。