将用户控件添加到wpf窗口
我有一个我创build的用户控件,但是当我将它添加到窗口中的XAML时,intellisense没有select它,我不知道如何将它添加到窗口。
我在这里拉我的头发!
任何帮助是极大的赞赏!
您需要在窗口标记内添加引用。 就像是:
xmlns:controls="clr-namespace:YourCustomNamespace.Controls;assembly=YourAssemblyName"
(当您添加xmlns:controls =“intellisense应该踢,使这一点更容易)
然后你可以添加控制:
<controls:CustomControlClassName ..... />
您可能需要添加名称空间 :
<Window x:Class="UserControlTest.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:UserControlTest" Title="User Control Test" Height="300" Width="300"> <local:UserControl1 /> </Window>
几个技巧:首先,确保顶部有一个xmlns,包含您的控件所在的命名空间。
xmlns:myControls="clr-namespace:YourCustomNamespace.Controls;assembly=YourAssemblyName" <myControls:thecontrol/>
其次,智力有时是愚蠢的。
这是我得到它的工作:
用户控件WPF
<UserControl x:Class="App.ProcessView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> <Grid> </Grid> </UserControl>
用户控制C#
namespace App { /// <summary> /// Interaction logic for ProcessView.xaml /// </summary> public partial class ProcessView : UserControl // My custom User Control { public ProcessView() { InitializeComponent(); } } }
MainWindow WPF
<Window x:Name="RootWindow" x:Class="App.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:app="clr-namespace:App" Title="Some Title" Height="350" Width="525" Closing="Window_Closing_1" Icon="bouncer.ico"> <Window.Resources> <app:DateConverter x:Key="dateConverter"/> </Window.Resources> <Grid> <ListView x:Name="listView" > <ListView.ItemTemplate> <DataTemplate> <app:ProcessView /> </DataTemplate> </ListView.ItemTemplate> </ListView> </Grid> </Window>