📄 mapcontrolsavelayerfile.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using ESRI.ArcGIS.Controls;
using ESRI.ArcGIS.SystemUI;
namespace UI
{
public partial class MapControlSaveLayerFile : UserControl, InterfaceList
{
public MapControlSaveLayerFile()
{
InitializeComponent();
}
#region InterfaceList 成员
public void RefreshData()
{
}
#endregion
private IMapControl3 m_mapControl = null;
private string m_mapDocumentName = string.Empty;
private StatusBarPanel statusBarXY;
//private IContainer components;
//private ContextMenuClass m_contextMenu = null;
private void MapControlSaveLayerFile_Load(object sender, EventArgs e)
{
m_mapControl = (IMapControl3)this.axMapControl1.Object;
axToolbarControl1.AddItem(new LoadLayerFileCmd(), -1, 2, false, -1, esriCommandStyles.esriCommandStyleIconOnly);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -