ArcMap属性表操作接口ITableWindow3

    

    ITableWindow3 tableWindow3 = new TableWindowClass
                {
                    //Layer = layer_result,
                    Application = m_application,
                    FeatureLayer = layer_result,
                    ShowSelected = false,

//字段别名
                    ShowAliasNamesInColumnHeadings = true,

//设置属性表的选择动作,需引入ESRI.ArcGIS.GeoDatabaseUI 名称空间。
                    TableSelectionAction=esriTableSelectionActions.esriSelectFeatures
                };
                tableWindow3.Show(true);


https://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//002900000056000000

原文地址:https://www.cnblogs.com/yzhyingcool/p/11305821.html