From 15e7c85838803a5f2f750bf40f8aa4d56d834c6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B2=B3=E9=95=BF=E6=9C=88?= Date: Tue, 27 Aug 2024 10:55:39 +0800 Subject: [PATCH 1/2] Fixed name format, Name 'tab' does not match rule 'XAML field'. Suggested name is 'Tab'. --- samples/AtomUI.Demo.Desktop/Views/MainView.axaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/AtomUI.Demo.Desktop/Views/MainView.axaml b/samples/AtomUI.Demo.Desktop/Views/MainView.axaml index 5e19bfd..90e585f 100644 --- a/samples/AtomUI.Demo.Desktop/Views/MainView.axaml +++ b/samples/AtomUI.Demo.Desktop/Views/MainView.axaml @@ -30,7 +30,7 @@ Grid.Row="1" HorizontalAlignment="Stretch" Margin="8" - Name="tab" + Name="Tab" Padding="20,0,0,0" TabStripPlacement="Left" FontSize="13" -- Gitee From 1ea33390b6268e57ff63a88ec8f384c6304467ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B2=B3=E9=95=BF=E6=9C=88?= Date: Tue, 27 Aug 2024 11:24:31 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=BC=BA=E5=88=B6=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E4=B8=BB=E9=A2=98=EF=BC=8C=E5=9B=A0=E7=9B=AE?= =?UTF-8?q?=E5=89=8D=E6=9C=AA=E9=80=82=E9=85=8D=E6=9A=97=E9=BB=91=E4=B8=BB?= =?UTF-8?q?=E9=A2=98=EF=BC=8C=E5=A6=82=E6=9E=9C=E7=B3=BB=E7=BB=9F=E4=B8=BA?= =?UTF-8?q?=E6=9A=97=E9=BB=91=E4=B8=BB=E9=A2=98=E6=97=B6=EF=BC=8C=E6=BC=94?= =?UTF-8?q?=E7=A4=BAdemo=E4=BC=9A=E5=B1=95=E7=A4=BA=E4=B8=8D=E6=AD=A3?= =?UTF-8?q?=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- samples/AtomUI.Demo.Desktop/App.axaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/AtomUI.Demo.Desktop/App.axaml b/samples/AtomUI.Demo.Desktop/App.axaml index 4448fb6..9be0c68 100644 --- a/samples/AtomUI.Demo.Desktop/App.axaml +++ b/samples/AtomUI.Demo.Desktop/App.axaml @@ -1,7 +1,9 @@ + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + RequestedThemeVariant="Light" + > -- Gitee