You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AUCMA_SCADA/Aucma.Core.PrintTo/Views/IndexPageView.xaml.cs

25 lines
627 B
C#

using Aucma.Core.PrintTo.Common;
using Aucma.Core.PrintTo.ViewModels;
using CommunityToolkit.Mvvm.Input;
using System.Windows.Controls;
namespace Aucma.Core.PrintTo.Views
{
/// <summary>
/// IndexPage.xaml 的交互逻辑
/// </summary>
public partial class IndexPageView : UserControl
{
public IndexPageView()
{
InitializeComponent();
this.DataContext = new IndexPageViewModel();
}
private void queryParam_PreviewMouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
CommHelper.OpenOsk();
}
}
}