mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-04-15 21:56:36 +08:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
89cdae2d39 |
2
.github/workflows/release-tag.yml
vendored
2
.github/workflows/release-tag.yml
vendored
@@ -63,7 +63,7 @@ jobs:
|
|||||||
run: ls -R
|
run: ls -R
|
||||||
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v3
|
||||||
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
|
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
|
||||||
with:
|
with:
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Globalization;
|
|
||||||
using Avalonia;
|
|
||||||
using Avalonia.Data.Converters;
|
|
||||||
using Avalonia.Metadata;
|
|
||||||
|
|
||||||
namespace Semi.Avalonia.Demo.Converters;
|
|
||||||
|
|
||||||
public class FileIconConverter : IMultiValueConverter
|
|
||||||
{
|
|
||||||
[Content] public IDictionary<string, object?> Items { get; } = new Dictionary<string, object?>();
|
|
||||||
|
|
||||||
public object? Convert(IList<object?> values, Type targetType, object? parameter, CultureInfo culture)
|
|
||||||
{
|
|
||||||
if (values[0] is bool isDirectory && values[1] is bool isOpen)
|
|
||||||
{
|
|
||||||
if (!isDirectory)
|
|
||||||
{
|
|
||||||
return Items["file"];
|
|
||||||
}
|
|
||||||
|
|
||||||
return isOpen ? Items["folderOpen"] : Items["folderClosed"];
|
|
||||||
}
|
|
||||||
|
|
||||||
return AvaloniaProperty.UnsetValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -29,40 +29,40 @@
|
|||||||
|
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
PlaceholderText="Please select a State"
|
PlaceholderText="Please select a State"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Classes="Large"
|
Classes="Large"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Classes="Small"
|
Classes="Small"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Classes="Bordered"
|
Classes="Bordered"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
IsEnabled="False"
|
IsEnabled="False"
|
||||||
PlaceholderText="Disabled"
|
PlaceholderText="Disabled"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
InnerLeftContent="https://"
|
InnerLeftContent="https://"
|
||||||
InnerRightContent=".com"
|
InnerRightContent=".com"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Width="100"
|
Width="100"
|
||||||
Classes="Large"
|
Classes="Large"
|
||||||
PlaceholderText="Large"
|
PlaceholderText="Large"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Width="100"
|
Width="100"
|
||||||
PlaceholderText="Default"
|
PlaceholderText="Default"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Width="100"
|
Width="100"
|
||||||
Classes="Small"
|
Classes="Small"
|
||||||
PlaceholderText="Small"
|
PlaceholderText="Small"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
@@ -70,17 +70,17 @@
|
|||||||
Width="100"
|
Width="100"
|
||||||
IsEnabled="False"
|
IsEnabled="False"
|
||||||
PlaceholderText="Disabled"
|
PlaceholderText="Disabled"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Width="100"
|
Width="100"
|
||||||
Classes="Bordered"
|
Classes="Bordered"
|
||||||
PlaceholderText="Bordered"
|
PlaceholderText="Bordered"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
<AutoCompleteBox
|
<AutoCompleteBox
|
||||||
Width="100"
|
Width="100"
|
||||||
Classes="Bordered"
|
Classes="Bordered"
|
||||||
IsEnabled="False"
|
IsEnabled="False"
|
||||||
ValueMemberBinding="{Binding Name,DataType=vm:StateData}" />
|
ValueMemberBinding="{Binding Name,x:DataType=vm:StateData}" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<ScrollViewer DockPanel.Dock="Right" Width="260">
|
<ScrollViewer DockPanel.Dock="Right" Width="260">
|
||||||
<StackPanel Margin="12" Spacing="8">
|
<StackPanel Margin="12" Spacing="8">
|
||||||
<TextBlock Text="Configuration" FontWeight="SemiBold" FontSize="16" />
|
<TextBlock Text="Configuration" FontWeight="SemiBold" FontSize="16" />
|
||||||
<TextBlock Text="Navigation" FontWeight="SemiBold" FontSize="14" />
|
<TextBlock Text="Navigation" FontWeight="SemiBold" FontSize="13" />
|
||||||
|
|
||||||
<Button Content="Push Page"
|
<Button Content="Push Page"
|
||||||
HorizontalAlignment="Stretch"
|
HorizontalAlignment="Stretch"
|
||||||
@@ -26,20 +26,6 @@
|
|||||||
|
|
||||||
<Separator />
|
<Separator />
|
||||||
|
|
||||||
<TextBlock Text="Modal Actions" FontWeight="SemiBold" FontSize="14" />
|
|
||||||
<Button Name="PushModalButton"
|
|
||||||
Content="Push Modal"
|
|
||||||
HorizontalAlignment="Stretch"
|
|
||||||
Click="OnPushModal" />
|
|
||||||
<Button Name="PopModalButton"
|
|
||||||
Content="Pop Modal"
|
|
||||||
HorizontalAlignment="Stretch"
|
|
||||||
Click="OnPopModal" />
|
|
||||||
<Button Name="PopAllModalsButton"
|
|
||||||
Content="Pop All Modals"
|
|
||||||
HorizontalAlignment="Stretch"
|
|
||||||
Click="OnPopAllModals" />
|
|
||||||
|
|
||||||
<TextBlock Text="Options" FontWeight="SemiBold" FontSize="14" />
|
<TextBlock Text="Options" FontWeight="SemiBold" FontSize="14" />
|
||||||
|
|
||||||
<CheckBox Name="HasNavBarCheck"
|
<CheckBox Name="HasNavBarCheck"
|
||||||
@@ -49,38 +35,20 @@
|
|||||||
<CheckBox Name="HasBackButtonCheck"
|
<CheckBox Name="HasBackButtonCheck"
|
||||||
Content="Has Back Button"
|
Content="Has Back Button"
|
||||||
IsChecked="True"
|
IsChecked="True"
|
||||||
IsCheckedChanged="OnHasBackButtonChanged" />
|
IsCheckedChanged="OnHasBackButonChanged" />
|
||||||
<CheckBox Name="HasShadowCheck"
|
|
||||||
Content="Has Shadow"
|
|
||||||
IsChecked="True"
|
|
||||||
IsCheckedChanged="OnHasShadowChanged" />
|
|
||||||
<CheckBox Name="large" Content="Large" />
|
|
||||||
|
|
||||||
<Separator />
|
|
||||||
|
|
||||||
<TextBlock Text="Modal Transition" FontWeight="SemiBold" FontSize="14" />
|
|
||||||
<ComboBox Name="TransitionCombo"
|
|
||||||
SelectedIndex="0"
|
|
||||||
HorizontalAlignment="Stretch"
|
|
||||||
SelectionChanged="OnTransitionChanged">
|
|
||||||
<ComboBoxItem Content="Slide from Bottom" />
|
|
||||||
<ComboBoxItem Content="CrossFade" />
|
|
||||||
<ComboBoxItem Content="None" />
|
|
||||||
</ComboBox>
|
|
||||||
|
|
||||||
<Separator />
|
<Separator />
|
||||||
|
|
||||||
<TextBlock Text="Status" FontWeight="SemiBold" FontSize="14" />
|
<TextBlock Text="Status" FontWeight="SemiBold" FontSize="14" />
|
||||||
<TextBlock Name="StatusText"
|
<TextBlock Name="StatusText"
|
||||||
Text="Depth: 1"
|
Text="Depth: 1"
|
||||||
|
Opacity="0.7"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
<TextBlock Name="HeaderText"
|
<TextBlock Name="HeaderText"
|
||||||
Text="Current: Home"
|
Text="Current: Home"
|
||||||
|
Opacity="0.7"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
<TextBlock Name="ModalText"
|
<ToggleSwitch Content="Large" Name="large" />
|
||||||
Text="Modals: 0"
|
|
||||||
TextWrapping="Wrap" />
|
|
||||||
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
using System;
|
|
||||||
using Avalonia.Animation;
|
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
|
|
||||||
@@ -8,7 +6,6 @@ namespace Semi.Avalonia.Demo.Pages;
|
|||||||
public partial class NavigationPageDemo : UserControl
|
public partial class NavigationPageDemo : UserControl
|
||||||
{
|
{
|
||||||
private int _pageCount;
|
private int _pageCount;
|
||||||
private int _modalCount;
|
|
||||||
|
|
||||||
public NavigationPageDemo()
|
public NavigationPageDemo()
|
||||||
{
|
{
|
||||||
@@ -18,7 +15,7 @@ public partial class NavigationPageDemo : UserControl
|
|||||||
|
|
||||||
private async void OnLoaded(object? sender, RoutedEventArgs e)
|
private async void OnLoaded(object? sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
await DemoNav.PushAsync(NavigationDemoHelper.MakePage("Home", "Welcome!\nUse the buttons to push and pop pages/modals.", 0), null);
|
await DemoNav.PushAsync(NavigationDemoHelper.MakePage("Home", "Welcome!\nUse the buttons to push and pop pages.", 0), null);
|
||||||
UpdateStatus();
|
UpdateStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,27 +42,6 @@ public partial class NavigationPageDemo : UserControl
|
|||||||
UpdateStatus();
|
UpdateStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void OnPushModal(object? sender, RoutedEventArgs e)
|
|
||||||
{
|
|
||||||
_modalCount++;
|
|
||||||
var modal = NavigationDemoHelper.MakePage($"Modal {_modalCount}", "This page was presented modally.\nTap 'Pop Modal' to dismiss.", _modalCount);
|
|
||||||
await DemoNav.PushModalAsync(modal);
|
|
||||||
UpdateStatus();
|
|
||||||
}
|
|
||||||
|
|
||||||
private async void OnPopModal(object? sender, RoutedEventArgs e)
|
|
||||||
{
|
|
||||||
await DemoNav.PopModalAsync();
|
|
||||||
UpdateStatus();
|
|
||||||
}
|
|
||||||
|
|
||||||
private async void OnPopAllModals(object? sender, RoutedEventArgs e)
|
|
||||||
{
|
|
||||||
await DemoNav.PopAllModalsAsync();
|
|
||||||
_modalCount = 0;
|
|
||||||
UpdateStatus();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnHasNavBarChanged(object? sender, RoutedEventArgs e)
|
private void OnHasNavBarChanged(object? sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
if (DemoNav == null)
|
if (DemoNav == null)
|
||||||
@@ -74,7 +50,7 @@ public partial class NavigationPageDemo : UserControl
|
|||||||
NavigationPage.SetHasNavigationBar(DemoNav.CurrentPage, HasNavBarCheck.IsChecked == true);
|
NavigationPage.SetHasNavigationBar(DemoNav.CurrentPage, HasNavBarCheck.IsChecked == true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnHasBackButtonChanged(object? sender, RoutedEventArgs e)
|
private void OnHasBackButonChanged(object? sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
if (DemoNav == null)
|
if (DemoNav == null)
|
||||||
return;
|
return;
|
||||||
@@ -82,30 +58,9 @@ public partial class NavigationPageDemo : UserControl
|
|||||||
NavigationPage.SetHasBackButton(DemoNav.CurrentPage, HasBackButtonCheck.IsChecked == true);
|
NavigationPage.SetHasBackButton(DemoNav.CurrentPage, HasBackButtonCheck.IsChecked == true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnHasShadowChanged(object? sender, RoutedEventArgs e)
|
|
||||||
{
|
|
||||||
if (DemoNav == null)
|
|
||||||
return;
|
|
||||||
if (DemoNav.CurrentPage != null)
|
|
||||||
DemoNav.HasShadow = HasShadowCheck.IsChecked == true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnTransitionChanged(object? sender, SelectionChangedEventArgs e)
|
|
||||||
{
|
|
||||||
if (DemoNav == null)
|
|
||||||
return;
|
|
||||||
DemoNav.ModalTransition = TransitionCombo.SelectedIndex switch
|
|
||||||
{
|
|
||||||
1 => new CrossFade(TimeSpan.FromMilliseconds(250)),
|
|
||||||
2 => null,
|
|
||||||
_ => new PageSlide(TimeSpan.FromMilliseconds(300), PageSlide.SlideAxis.Vertical)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private void UpdateStatus()
|
private void UpdateStatus()
|
||||||
{
|
{
|
||||||
StatusText.Text = $"Depth: {DemoNav.StackDepth}";
|
StatusText.Text = $"Depth: {DemoNav.StackDepth}";
|
||||||
HeaderText.Text = $"Current: {DemoNav.CurrentPage?.Header ?? "(none)"}";
|
HeaderText.Text = $"Current: {DemoNav.CurrentPage?.Header ?? "(none)"}";
|
||||||
ModalText.Text = $"Modals: {DemoNav.ModalStack.Count}";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,8 +3,7 @@
|
|||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||||
x:Class="Semi.Avalonia.Demo.Pages.WindowCustomizationsPage"
|
x:Class="Semi.Avalonia.Demo.Pages.WindowCustomizationsPage">
|
||||||
x:CompileBindings="True">
|
|
||||||
|
|
||||||
<StackPanel
|
<StackPanel
|
||||||
Spacing="10"
|
Spacing="10"
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
|
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
<ResourceDictionary
|
<ResourceDictionary
|
||||||
xmlns="https://github.com/avaloniaui"
|
xmlns="https://github.com/avaloniaui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:collections="using:Avalonia.Collections"
|
xmlns:collections="using:Avalonia.Collections">
|
||||||
x:CompileBindings="True">
|
|
||||||
<ControlTheme x:Key="DataGridCellTextBlockTheme" TargetType="TextBlock">
|
<ControlTheme x:Key="DataGridCellTextBlockTheme" TargetType="TextBlock">
|
||||||
<Setter Property="Margin" Value="{DynamicResource DataGridCellTextBlockDefaultMargin}" />
|
<Setter Property="Margin" Value="{DynamicResource DataGridCellTextBlockDefaultMargin}" />
|
||||||
<Setter Property="VerticalAlignment" Value="Center" />
|
<Setter Property="VerticalAlignment" Value="Center" />
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
<ResourceDictionary
|
<ResourceDictionary
|
||||||
xmlns="https://github.com/avaloniaui"
|
xmlns="https://github.com/avaloniaui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:conv="clr-namespace:Avalonia.Controls.Converters;assembly=Avalonia.Controls.TreeDataGrid"
|
xmlns:conv="clr-namespace:Avalonia.Controls.Converters;assembly=Avalonia.Controls.TreeDataGrid">
|
||||||
x:CompileBindings="True">
|
|
||||||
<Design.PreviewWith>
|
<Design.PreviewWith>
|
||||||
<StackPanel Margin="20">
|
<StackPanel Margin="20">
|
||||||
<TreeDataGridColumnHeader Header="123" />
|
<TreeDataGridColumnHeader Header="123" />
|
||||||
|
|||||||
@@ -8,26 +8,6 @@
|
|||||||
<ControlTheme x:Key="{x:Type NavigationPage}" TargetType="NavigationPage">
|
<ControlTheme x:Key="{x:Type NavigationPage}" TargetType="NavigationPage">
|
||||||
<Setter Property="Background" Value="Transparent" />
|
<Setter Property="Background" Value="Transparent" />
|
||||||
<Setter Property="BarHeight" Value="{DynamicResource NavigationPageBarMinHeight}" />
|
<Setter Property="BarHeight" Value="{DynamicResource NavigationPageBarMinHeight}" />
|
||||||
<Setter Property="PageTransition">
|
|
||||||
<PageSlide Duration="0:0:0.3" Orientation="Horizontal" FillMode="Forward">
|
|
||||||
<PageSlide.SlideInEasing>
|
|
||||||
<SplineEasing X1="0.16" Y1="1" X2="0.3" Y2="1" />
|
|
||||||
</PageSlide.SlideInEasing>
|
|
||||||
<PageSlide.SlideOutEasing>
|
|
||||||
<SplineEasing X1="0.2" Y1="0.85" X2="0.3" Y2="1" />
|
|
||||||
</PageSlide.SlideOutEasing>
|
|
||||||
</PageSlide>
|
|
||||||
</Setter>
|
|
||||||
<Setter Property="ModalTransition">
|
|
||||||
<PageSlide Duration="0:0:0.25" Orientation="Vertical" FillMode="Forward">
|
|
||||||
<PageSlide.SlideInEasing>
|
|
||||||
<SplineEasing X1="0.16" Y1="1" X2="0.3" Y2="1" />
|
|
||||||
</PageSlide.SlideInEasing>
|
|
||||||
<PageSlide.SlideOutEasing>
|
|
||||||
<SplineEasing X1="0.2" Y1="0.85" X2="0.3" Y2="1" />
|
|
||||||
</PageSlide.SlideOutEasing>
|
|
||||||
</PageSlide>
|
|
||||||
</Setter>
|
|
||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
<ControlTemplate TargetType="NavigationPage">
|
<ControlTemplate TargetType="NavigationPage">
|
||||||
<Panel ClipToBounds="True">
|
<Panel ClipToBounds="True">
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<ResourceDictionary
|
<ResourceDictionary
|
||||||
xmlns="https://github.com/avaloniaui"
|
xmlns="https://github.com/avaloniaui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
x:CompileBindings="True">
|
|
||||||
<ControlTheme x:Key="{x:Type SplitView}" TargetType="SplitView">
|
<ControlTheme x:Key="{x:Type SplitView}" TargetType="SplitView">
|
||||||
<Setter Property="OpenPaneLength" Value="{DynamicResource SplitViewOpenPaneThemeLength}" />
|
<Setter Property="OpenPaneLength" Value="{DynamicResource SplitViewOpenPaneThemeLength}" />
|
||||||
<Setter Property="CompactPaneLength" Value="{DynamicResource SplitViewCompactPaneThemeLength}" />
|
<Setter Property="CompactPaneLength" Value="{DynamicResource SplitViewCompactPaneThemeLength}" />
|
||||||
|
|||||||
Reference in New Issue
Block a user