Loading

摘要: <Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <!--TitlePanel 包含应用程序的名称和页标题--> <StackPanel x:Name="TitlePan 阅读全文
posted @ 2013-05-30 16:02 androllen 阅读(138) 评论(0) 推荐(0) 编辑
摘要: <MediaElement x:Name="butterflyMediaElement" Source="sampleMedia/Butterfly.wmv" IsMuted="True" Opacity="0.0" IsHitTestVisible="False" /> <TextBlock Canvas.Left="5" Canvas.Top="30" FontFamily="Verdana" FontSize=& 阅读全文
posted @ 2013-05-30 11:09 androllen 阅读(144) 评论(0) 推荐(0) 编辑
摘要: <UserControl x:Class="DataTemplates.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="400" Height="300"> <Grid x:Name="LayoutRoot" Background=" 阅读全文
posted @ 2013-05-30 11:05 androllen 阅读(170) 评论(0) 推荐(0) 编辑
摘要: <Grid> <TextBlock Text="{Binding Source}" /> </Grid> public partial class Page : UserControl { public Page() { InitializeComponent(); this.DataContext = App.Current.Host; } }<StackPanel BindingValidationError="StackPanel_BindingValidationError" > <S... 阅读全文
posted @ 2013-05-30 10:59 androllen 阅读(142) 评论(0) 推荐(0) 编辑
摘要: <Application.Resources> <Style x:Key="textBlockStyle" TargetType="TextBlock"> <Setter Property="Foreground" Value="Red" /> </Style> </Application.Resources> <StackPanel> <TextBlock Style="{StaticResource textBlockSty 阅读全文
posted @ 2013-05-30 10:58 androllen 阅读(117) 评论(0) 推荐(0) 编辑