FieldWorkClient/View/ShellWindow.xaml

36 lines
1.7 KiB
Plaintext
Raw Normal View History

2025-03-17 10:58:59 +08:00
<h:LinkWindowBase x:Class="HeBianGu.App.Disk.ShellWindow"
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:h="https://github.com/HeBianGu"
xmlns:local="clr-namespace:HeBianGu.App.Disk"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title=""
2025-03-17 10:58:59 +08:00
Width="1266"
Height="720"
BorderBrush="Transparent"
2025-04-11 16:11:55 +08:00
Style="{DynamicResource {x:Static local:App.Custom}}"
2025-03-17 10:58:59 +08:00
mc:Ignorable="d">
<!--<h:Cattach.RightTemplate>
<ControlTemplate>
<Grid Width="200" Background="Purple" />
</ControlTemplate>
</h:Cattach.RightTemplate>-->
<h:Cattach.CaptionRightTemplate>
<ControlTemplate TargetType="Control">
<Button h:Cattach.Icon="{x:Static h:Icons.Add}" Style="{DynamicResource {x:Static h:ButtonKeys.Icon}}" />
</ControlTemplate>
</h:Cattach.CaptionRightTemplate>
<h:LinkWindowBase.Logo>
<BitmapImage UriSource="pack://application:,,,/Assets/logo.png"/>
2025-03-17 10:58:59 +08:00
</h:LinkWindowBase.Logo>
<h:LinkWindowBase.Links>
<h:LinkAction Action="Home"
Controller="Loyout"
DisplayName="网盘空间"
Logo="{x:Null}" />
<h:LinkAction Action="Send" Controller="Send" DisplayName="传输列表" />
2025-03-22 15:29:32 +08:00
<h:LinkAction Action="Sync" Controller="Sync" DisplayName="同步" />
2025-03-17 10:58:59 +08:00
</h:LinkWindowBase.Links>
</h:LinkWindowBase>