mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-09 16:16:13 -04:00
Avalonia 12 uses compiled bindings by default. Converted all remaining reflection bindings into compiled bindings, Fixed binding errors
34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
xmlns:local="clr-namespace:LibationAvalonia.Views"
|
|
x:Class="LibationAvalonia.Views.SeriesViewDialog"
|
|
x:DataType="local:SeriesViewDialog"
|
|
Title="View All Items in Series">
|
|
|
|
<TabControl
|
|
ItemsSource="{Binding TabItems}"
|
|
VerticalAlignment="Stretch"
|
|
HorizontalAlignment="Stretch">
|
|
<TabControl.Styles>
|
|
<Style Selector="ItemsPresenter#PART_ItemsPresenter">
|
|
<Setter Property="Height" Value="23"/>
|
|
</Style>
|
|
<Style Selector="TabItem">
|
|
<Setter Property="MinHeight" Value="40"/>
|
|
<Setter Property="Height" Value="40"/>
|
|
<Setter Property="Padding" Value="8,2,8,5"/>
|
|
</Style>
|
|
<Style Selector="TabItem#Header TextBlock">
|
|
<Setter Property="MinHeight" Value="5"/>
|
|
</Style>
|
|
<Style Selector="Button">
|
|
<Setter Property="Padding" Value="20,5,20,5"/>
|
|
</Style>
|
|
</TabControl.Styles>
|
|
|
|
</TabControl>
|
|
</Window>
|