年度变更建库软件5.0版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
673 B

4 months ago
using KGIS.Framework.Utils;
using System;
namespace Kingo.Plugin.MapView.Views
{
/// <summary>
/// UCOpenProject.xaml 的交互逻辑
/// </summary>
public partial class UCOpenProject : BaseWindow
{
public UCOpenProject()
{
InitializeComponent();
recentOpenProject.Close += RecentOpenProject_Close;
browserLocal.Close += BrowserLocal_Close;
}
private void BrowserLocal_Close(object sender, EventArgs e)
{
this.Close();
}
private void RecentOpenProject_Close(object sender, EventArgs e)
{
this.Close();
}
}
}