我不想复制我的代码,所以我看到我可以使用:用户控制/本地 问题是当我使用本地时,我只能调用与此文件夹在同一文件夹中的文件,我想在另一个文件夹中调用我的文件。
示例:
在我的Layout / _Menu.xaml
中<UserControl
x:Class="TeysserWP8.Views.misc._menuLayout"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:TeysserWP8.Views.misc"
xmlns:drawerLayout="using:DrawerLayout"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<Grid.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black" Offset="0"/>
<GradientStop Color="#FF563AA0" Offset="1"/>
</LinearGradientBrush>
</Grid.Background>
<Button Command="{Binding MyDietViewCommand}" Content="Mes Régimes" Margin="10,21,0,502" Width="245"></Button>
<Button Command="{Binding DietStoreViewCommand}" Content="Régimes Store" Margin="10,89,0,434" Width="245"></Button>
<Button Command="{Binding LogoutViewCommand}" Content="Déconnexion" Margin="10,502,0,21" Width="245"></Button>
</Grid>
</UserControl>
在我的Store / Show.xaml
中<Grid>
some code
</Grid>
<local:/Layout/_Menu /> <-- i Want something like this but its not work.
如果_Menu.xaml文件与Show.xaml(存储文件夹)位于同一文件夹中,则它将起作用。
你能帮帮我吗?感谢。答案 0 :(得分:3)
我认为这与文件夹无关。在XAML中,当引用当前类所在的命名空间时,大多数时候都使用本地别名。这不是强制性的。
检查您要引用的课程
<local:/Layout/_Menu />
位于您在XAML文件顶部声明的namespase中。对于您的情况,请检入TeysserWP8.Views.misc
命名空间
xmlns:local="using:TeysserWP8.Views.misc"