Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.Cockpit.Admin/RelationEditorWindow.xaml @ 8303

Last change on this file since 8303 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 838 bytes
Line 
1<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
3        xmlns:src="clr-namespace:HeuristicLab.OKB.Cockpit.Admin"
4        x:Class="HeuristicLab.OKB.Cockpit.Admin.RelationEditorWindow"
5        WindowStyle = "ToolWindow"
6        WindowStartupLocation = "CenterOwner"
7        ResizeMode = "CanResize"
8        ShowInTaskbar ="False"
9        SizeToContent="WidthAndHeight"
10        Topmost ="True">
11  <DockPanel>
12    <StackPanel Orientation="Horizontal" DockPanel.Dock="Bottom">
13      <Button Name="OK" Padding="10 0 10 0" Margin="0 0 5 0" Click="OnClick">OK</Button>
14      <Button Name="Cancel" Padding="10 0 10 0" Click="OnClick">Cancel</Button>
15    </StackPanel>
16    <src:ItemSelector x:Name="ItemSelector"/>
17  </DockPanel>
18</Window>
Note: See TracBrowser for help on using the repository browser.