0

我正在尝试从现有视图创建一个扩展,其中我有一个文本控件列表,并且在新项目中我想使用此控件并将这些文本框之一更改为单选按钮。

使用 MVVM 可以很容易地使用相同的代码,而无需重复代码,但对于 XAML 视图,我没有找到在不创建副本的情况下进行此更改的好方法。

例子:

具有主要用户控件的核心项目

<UserControl x:Class="SilverlightApplication4.MainPage" Name="test"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <StackPanel>
            <TextBlock>
            asdfasdf
            this is a test
            </TextBlock>
            <Button Height="120" Name="asdf" Content="This is a Button">

            </Button>
        </StackPanel>

    </Grid>
</UserControl>

现在我有第二个项目,我想将 TextBlock 更改为其他内容。

<UserControl x:Class="SilverlightApplication1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
             xmlns:core="clr-namespace:SilverlightApplication4;assembly=SilverlightApplication4" d:DesignHeight="300" d:DesignWidth="400">
<core:MainPage>
   <!-- how do i change the type of child elements?-->
</core:MainPage>

</UserControl>
4

1 回答 1

1

解决方案是使用 ContentControl 并通过 Caliburn.Micro 将其绑定到 ViewModel。

我在我的另一个问题中添加了一个示例和代码(在 XAML 部分下方):EF/Silverlight 应用程序的项目结构

于 2012-05-22T14:14:00.860 回答