Advertisement
Guest User

Untitled

a guest
May 30th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <UserControl x:Class="MainModule.ToolbarWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mvvm="clr-namespace:Microsoft.Practices.Prism.Mvvm;assembly=Microsoft.Practices.Prism.Mvvm.Desktop"
  7. mvvm:ViewModelLocator.AutoWireViewModel="True"
  8. mc:Ignorable="d"
  9. d:DesignHeight="300" d:DesignWidth="300">
  10. <StackPanel>
  11. <Label>Test</Label>
  12. <Label Content="{Binding Name}"></Label>
  13. </StackPanel>
  14.  
  15. namespace MainModule
  16.  
  17. public partial class ToolbarWindow
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement