| 12345678910111213141516171819202122232425262728 |
-
- using System;
- using System.Windows;
- using System.Windows.Input;
- using SHJX.Service.Common.ReadXML;
- namespace SHJX.Service.View.View
- {
- /// <summary>
- /// AboutForm.xaml 的交互逻辑
- /// </summary>
- public partial class AboutForm : Window
- {
- public string AboutText => $"Copyright © 2012-{DateTime.Now.Year} Shanghai Jingxin Industrial Development Co.,Ltd. 保留所有权力.";
- public AboutForm(ReadConfigUtil config)
- {
- Owner = Application.Current.MainWindow;
- DataContext = this;
- InitializeComponent();
- }
- private void Grid_MouseDown(object sender, MouseButtonEventArgs e)
- {
- Close();
- }
- }
- }
|