伙计们,我想在主窗口中使用我自己的“用户控件”,但我对这条线有疑问<local:texttoolbar x:Name="toolbar" DockPanel.Dock="Top">
项目的名称是 wpfin8 所以我把它放在命名空间的行中
xmlns:local="clr-namespace:wpfin8">
主用户控件 xaml 代码如下所示
<UserControl x:Class="TextEditor.TextEditorToolbar"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Loaded="UserControl_Loaded">
名称是 texttoolbar.xaml
这段主窗口代码是
<Window x:Class="wpfin8.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"
xmlns:local="clr-namespace:wpfin8">
<Menu x:Name="menu"
DockPanel.Dock="Top"></Menu>
<local:texttoolbar x:Name="toolbar" DockPanel.Dock="Top">
<ToolBar>
<Button >open
</Button>
<Button Margin="10,0,0,0">
save
</Button>
</ToolBar>
</local:texttoolbar>
我想我做的一切都正确,它不想工作,它仍然用这个“名称 texttoolbar 名称空间不存在”下划线“clr-namespace:wpfin8””,我也尝试过“TextEditorToolbar”,“TextEditor”