BaseWindow.cs
761 Bytes
using System;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace HHECS.WinCommon.Win
{
public class BaseWindow : HandyControl.Controls.Window
{
public BaseWindow()
{
//统一字体大小
this.FontSize = 16;
//this.Background = new SolidColorBrush(Colors.White);
this.Icon = BitmapFrame.Create(new Uri("pack://application:,,,/HHECS.WinCommon;component/Resource/Content/Image/favicon.ico", UriKind.RelativeOrAbsolute));
this.Background = new SolidColorBrush(Colors.White);
//
//this.ActiveGlowColor = (Color)this.FindResource("PrimaryColor");
//this.Style = (Style)this.FindResource("WindowGlow");
}
}
}