Files
BeWoPlaner/BeWo/View/Developer/DeveloperView.xaml

61 lines
2.6 KiB
Plaintext
Raw Normal View History

2026-06-10 15:41:31 +02:00
<view:BeWoView
x:Class="BeWo.View.Developer.DeveloperView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:developer="clr-namespace:BeWo.ViewModel.View.Developer"
xmlns:local="clr-namespace:BeWo.View.Developer"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:view="clr-namespace:BeWo.View"
d:DataContext="{d:DesignInstance Type=developer:DesignDeveloperViewModel}"
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d">
<view:BeWoView.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="..\..\Styles\ModernOrangeBlack.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style BasedOn="{StaticResource {x:Type Label}}" TargetType="Label">
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="HorizontalAlignment" Value="Right" />
<Setter Property="Margin" Value="3,6" />
</Style>
</ResourceDictionary>
</view:BeWoView.Resources>
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<TabControl SelectedIndex="1">
<TabItem Header="Allgemein" />
<TabItem Header="WPF">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="45" />
<ColumnDefinition Width="90" />
<ColumnDefinition Width="3*" />
<ColumnDefinition Width="45" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Label Grid.Column="1">KeyboardFocus:</Label>
<TextBox
Grid.Column="2"
IsReadOnly="True"
Text="{Binding KeyboardFocus}" />
<Label Grid.Row="1" Grid.Column="1">LogicalFocus:</Label>
<TextBox
Grid.Row="1"
Grid.Column="2"
IsReadOnly="True"
Text="{Binding LogicalFocus}" />
</Grid>
</TabItem>
<TabItem Header="Logs" />
<TabItem Header="Configs" />
</TabControl>
</Grid>
</view:BeWoView>