我正在尝试从现有视图创建扩展,其中我有一个文本控件列表,在新项目中我想使用此控件并将其中一个文本框更改为单选按钮。
使用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>
答案 0 :(得分:1)
解决方案是使用ContentControl并通过Caliburn.Micro将其绑定到ViewModel。
我在我的另一个问题中添加了一个示例和代码(在XAML部分下面):Project structure for EF/Silverlight application