Skip to content

Commit ed5cc92

Browse files
committed
📃 Text
1 parent 213b2c2 commit ed5cc92

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

ref/WinAuth

src/BD.WTTS.Client.Avalonia/UI/Views/Pages/HomePage.axaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,18 @@
7474
MaxWidth="1080"
7575
Spacing="20">
7676
<spp:Snackbar
77-
Title="{Binding Path=Res.Notice_Tray_Title, Mode=OneWay, Source={x:Static s:ResourceService.Current}}"
7877
VerticalAlignment="Top"
7978
IsClosable="False"
8079
IsOpen="True"
8180
IsVisible="{spp:OnPlatform !GA}"
8281
Message="当前使用的程序版本为测试版本,可能会有各种各样不可言明的 Bug,遇到问题请理性反馈,谢谢。"
8382
Severity="Warning" />
83+
<spp:Snackbar
84+
VerticalAlignment="Top"
85+
IsClosable="False"
86+
IsOpen="True"
87+
IsVisible="{spp:OnPlatform !GA}"
88+
Message="如果您不喜欢当前主页为默认启动页面可以在【设置-界面设置-启动时默认打开页面】处更改" />
8489
<spp:Snackbar
8590
Title="{Binding Path=Res.Notice_Tray_Title, Mode=OneWay, Source={x:Static s:ResourceService.Current}}"
8691
VerticalAlignment="Top"

src/BD.WTTS.Client.Avalonia/UI/Views/Windows/MainWindow.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ internal bool SetStartDefaultPageName()
6262
pageType = page.PageType;
6363
}
6464
}
65-
INavigationService.Instance.Navigate(pageType ?? typeof(PluginStorePage));
65+
INavigationService.Instance.Navigate(pageType ?? typeof(HomePage));
6666
return true;
6767
}
6868

0 commit comments

Comments
 (0)