FieldWorkClient/View/Loyout/ShareControl.xaml.cs

22 lines
467 B
C#
Raw Normal View History

2025-03-17 10:58:59 +08:00
using System.Windows.Controls;
using System.Windows.Input;
namespace HeBianGu.App.Disk
{
/// <summary>
/// ShareControl.xaml 的交互逻辑
/// </summary>
public partial class ShareControl : UserControl
{
public ShareControl()
{
InitializeComponent();
}
private void Explorer_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
{
e.Handled = true;
}
}
}