Guest User

Untitled

a guest
Jun 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <TabControl
  2. AutomationProperties.AutomationId="MainTabControl"
  3. cal:RegionManager.RegionName="{x:Static inf:RegionNames.MainRegion}"
  4. Width="Auto" Height="Auto" Margin="10,10,0,0"
  5. HorizontalAlignment="Stretch"
  6. IsSynchronizedWithCurrentItem="True"
  7. ItemTemplate="{StaticResource TabItemTemplate}"
  8. SelectionChanged="TabControl_SelectionChanged">
  9.  
  10. <DataTemplate x:Key="ClosableTabItemTemplate">
  11. <DockPanel Width="120">
  12. <Button
  13. Command="inf:CloseCommands.CloseCommand"
  14. Content="X"
  15. Cursor="Hand"
  16. DockPanel.Dock="Right"
  17. Focusable="False"
  18. FontFamily="Courier"
  19. FontSize="9"
  20. FontWeight="Bold"
  21. Margin="0,1,0,0"
  22. Padding="0"
  23. VerticalContentAlignment="Bottom"
  24. Width="16" Height="16"
  25. />
  26. <ContentPresenter
  27. Content="{Binding}"
  28. VerticalAlignment="Center"
  29. />
  30. </DockPanel>
  31. </DataTemplate>
Add Comment
Please, Sign In to add comment