parent
eac93572ea
commit
41d428c850
|
|
@ -103,7 +103,7 @@ namespace HeBianGu.App.Disk
|
|||
// 引导功能按钮
|
||||
services.AddGuideViewPresenter();
|
||||
services.AddHideWindowViewPresenter();
|
||||
services.AddSettingViewPrenter();
|
||||
//services.AddSettingViewPrenter();
|
||||
//services.AddThemeRightToolViewPresenter();
|
||||
services.AddThemeRightViewPresenter();
|
||||
services.AddWindowCaptionViewPresenter(x =>
|
||||
|
|
@ -139,7 +139,7 @@ namespace HeBianGu.App.Disk
|
|||
l.ItemHeight = 35;
|
||||
//l.ItemWidth = 120;
|
||||
l.ItemCornerRadius = 5;
|
||||
l.AnimalSpeed = 3000;
|
||||
l.AnimalSpeed = 100;
|
||||
l.AccentColorSelectType = 0;
|
||||
l.IsUseAnimal = false;
|
||||
l.ThemeType = ThemeType.DarkBlack;
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 MiB |
|
|
@ -73,4 +73,21 @@
|
|||
</Page>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Update="logo.png">
|
||||
<Link>Resources\logo.png</Link>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="Assets\file-detail.png" />
|
||||
<None Remove="Assets\logo.png" />
|
||||
<Resource Include="Assets\logo.png" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="global.json" />
|
||||
<EditorConfigFiles Include="global.json" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,10 @@
|
|||
xmlns:h="https://github.com/HeBianGu"
|
||||
xmlns:local="clr-namespace:HeBianGu.App.Disk"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
Title="ShellWindow"
|
||||
Width="1266"
|
||||
Height="720"
|
||||
BorderBrush="Transparent"
|
||||
Style="{DynamicResource {x:Static h:LinkWindowBase.DiskKey}}"
|
||||
Style="{DynamicResource {x:Static h:LinkWindowBase.DefaultKey}}"
|
||||
mc:Ignorable="d">
|
||||
<!--<h:Cattach.RightTemplate>
|
||||
<ControlTemplate>
|
||||
|
|
@ -22,9 +21,8 @@
|
|||
</ControlTemplate>
|
||||
</h:Cattach.CaptionRightTemplate>
|
||||
<h:LinkWindowBase.Logo>
|
||||
<BitmapImage UriSource="/HeBianGu.General.WpfControlLib;component/Resources/logo.png" />
|
||||
<BitmapImage UriSource="pack://application:,,,/Assets/logo.png"/>
|
||||
</h:LinkWindowBase.Logo>
|
||||
|
||||
<h:LinkWindowBase.Links>
|
||||
<h:LinkAction Action="Home"
|
||||
Controller="Loyout"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ namespace HeBianGu.App.Disk
|
|||
/// </summary>
|
||||
public partial class ShellWindow
|
||||
{
|
||||
private readonly MinioService _minioService;
|
||||
|
||||
public ShellWindow()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -14,10 +14,11 @@ public class SyncViewModel : MvcViewModelBase
|
|||
public ICommand OpenDirCommand { get; set; }
|
||||
private readonly ISerializerService _serializerService;
|
||||
private readonly MinioService _minioService;
|
||||
private readonly SystemSetting _setting = new SystemSetting();
|
||||
private readonly SystemSetting _setting;
|
||||
|
||||
protected override void Init()
|
||||
{
|
||||
Console.WriteLine("init");
|
||||
//RaisePropertyChanged();
|
||||
/*LinkActions.Add(new LinkAction() { Action = "Space", Controller = "Loyout", DisplayName = "会话", Logo = "\xe613" });
|
||||
|
||||
|
|
@ -29,6 +30,7 @@ public class SyncViewModel : MvcViewModelBase
|
|||
|
||||
public SyncViewModel(ISerializerService serializerService, MinioService minioService)
|
||||
{
|
||||
Console.WriteLine("SyncViewModel");
|
||||
_minioService = minioService;
|
||||
_serializerService = serializerService;
|
||||
if (File.Exists("./settings.xml"))
|
||||
|
|
@ -54,6 +56,7 @@ public class SyncViewModel : MvcViewModelBase
|
|||
|
||||
protected override void Loaded(string args)
|
||||
{
|
||||
Console.WriteLine("Loaded");
|
||||
}
|
||||
|
||||
public int _taskCount = 3;
|
||||
|
|
|
|||
Loading…
Reference in New Issue