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.
34 lines
822 B
C#
34 lines
822 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();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 点击按钮带出键盘
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
private void ClickQuery()
|
|
{
|
|
CommHelper.OpenOsk();
|
|
}
|
|
|
|
private void queryParam_PreviewMouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
|
|
{
|
|
ClickQuery();
|
|
}
|
|
}
|
|
}
|