2

在我的项目中,我有这样的 XAML 文件:

<Grid Margin="50,0,0,0">
   //Huge amount of code goes here
</Grid>

设计时很难遍历所有代码Grid。我可以将所有代码移动到单独的 XAML 文件文件中,并在此Grid内容中我将调用该 XAML 文件吗?

<Grid Margin="50,0,0,0">
    //call xaml file here
</Grid>
4

1 回答 1

3

您应该定义一个 UserControl;假设“大量代码”是这样的:

<Border Name="yourBorder">
      //Other Xamls
</Border>

现在您创建一个新的 UserControl 并将此 Border 放入其中

<UserControl x:Class="WpfApplication.UserControl1"
         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">
 <Border Name="yourBorder">
      //Other Xamls
</Border>
</UserControl>

您可以UserControl1在其他 Xamls 中使用。您应该添加xmlns:wp="clr-namespace:WpfApplication"到您的 Xaml。例如,如果您想在 Window 中使用它:

<Window x:Class="WpfApplication.Window2"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:wp="clr-namespace:WpfApplicationUpper"     //This is what I mentioned
    Title="Window2" Height="300" Width="300">
<StackPanel>
    <wp:UserControl1 />    // You call it using this format
</SatckPanel>
于 2012-12-26T04:27:32.747 回答