Skip to content

Instantly share code, notes, and snippets.

@AnsonSmith
Created October 8, 2010 20:33
Show Gist options
  • Save AnsonSmith/617481 to your computer and use it in GitHub Desktop.
Save AnsonSmith/617481 to your computer and use it in GitHub Desktop.
<UserControl x:Class="SimpleConductorOneActive.Views.RandomScreenView"
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">
<Grid Background="AliceBlue">
<StackPanel Orientation="Vertical">
<Button Content="Close" HorizontalAlignment="Right" Margin="5" x:Name="CloseScreen" />
<TextBlock Text="Name:"/>
<TextBlock x:Name="DisplayName"/>
<TextBlock Text="InitializeCalls:"/>
<TextBlock x:Name="OnInitializeCalls"/>
<TextBlock Text="Activate Calls:"/>
<TextBlock x:Name="OnActivateCalls"/>
<TextBlock Text="Deactivate Calls:"/>
<TextBlock x:Name="OnDeactivateCalls"/>
</StackPanel>
</Grid>
</UserControl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment