using GeekDesk.Constant; using GeekDesk.Util; using System.Configuration; using System.Windows; using System.Windows.Controls; using System.Windows.Input; namespace GeekDesk.Control.UserControls.Config { /// /// AboutControl.xaml 的交互逻辑 /// public partial class AboutControl : UserControl { public AboutControl() { InitializeComponent(); AppInfo.Text += ConfigurationManager.AppSettings["Version"]; PublicWeChat.Source = ImageUtil.Base64ToBitmapImage(Constants.PUBLIC_WE_CHAT_IMG_BASE64); WeChatCode.Source = ImageUtil.Base64ToBitmapImage(Constants.WE_CHAT_CODE_IMG_BASE64); ZFBCode.Source = ImageUtil.Base64ToBitmapImage(Constants.ZFB_CODE_IMG_BASE64); } /// /// 移动窗口 /// /// /// private void DragMove(object sender, System.Windows.Input.MouseButtonEventArgs e) { if (e.LeftButton == MouseButtonState.Pressed) { Window.GetWindow(this).DragMove(); } } private void SC_MouseEnter(object sender, MouseEventArgs e) { this.Cursor = Cursors.Hand; } private void SC_MouseLeave(object sender, MouseEventArgs e) { this.Cursor = Cursors.Arrow; } } }