我想显示模型的详细信息页面。根据模型的类型(定义为字符串属性),我想显示某些控件(图像、文本、媒体 ..)
在我的伪代码中,它看起来像:
<phone:PhoneApplicationPage
x:Class="TestApp.FullscreenArtifactPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
SupportedOrientations="Portrait" Orientation="Portrait"
shell:SystemTray.IsVisible="False"
xmlns:testapp="clr-namespace:TestApp"
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
>
<!-- if(model.type == TEXT) -->
<StackPanel>
<TextBlock Name="MimeText" Text="{Binding Mime}"/>
</StackPanel>
<!-- else if(model.type == IMAGE) -->
<StackPanel>
<Image Name="Image" Source="{Binding PayloadUri}"/>
</StackPanel>
</phone:PhoneApplicationPage>
我知道我可以在 ListBoxes 中使用DataTemplateSelector,但是由于我这里没有 ListBox,所以没有调用 onChangeContent 方法。
有什么建议么?
谢谢