25 lines
588 B
C#
25 lines
588 B
C#
using System.Windows;
|
|
|
|
namespace XP.Hardware.RaySource.Views
|
|
{
|
|
/// <summary>
|
|
/// 射线源配置窗口 | Ray source config window
|
|
/// </summary>
|
|
public partial class RaySourceConfigWindow : Window
|
|
{
|
|
/// <summary>
|
|
/// 构造函数 | Constructor
|
|
/// </summary>
|
|
public RaySourceConfigWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
// 继承主窗口图标
|
|
if (Application.Current?.MainWindow != null)
|
|
{
|
|
Icon = Application.Current.MainWindow.Icon;
|
|
}
|
|
}
|
|
}
|
|
}
|