17 lines
389 B
C#
17 lines
389 B
C#
using System.Windows.Controls;
|
||
|
||
namespace FATrace.WPLApp.Views
|
||
{
|
||
/// <summary>
|
||
/// RawProUseView.xaml 的交互逻辑
|
||
/// 视图代码隐藏仅用于 InitializeComponent,其他逻辑放在 ViewModel 中
|
||
/// </summary>
|
||
public partial class RawProUseView : UserControl
|
||
{
|
||
public RawProUseView()
|
||
{
|
||
InitializeComponent();
|
||
}
|
||
}
|
||
}
|