布局控件类。布局窗口,即MapLayoutControl类,用于布局的显示窗口,提供布局中各类元素的可视化编辑与操作的环境。

命名空间:  SuperMap.UI
程序集:  SuperMap.Layout (in SuperMap.Layout)
版本: dll

语法

C#
[ToolboxBitmapAttribute(typeof(MapLayoutControl))]
public class MapLayoutControl : UserControl

备注

布局窗口,即MapLayoutControl类,用于布局的显示窗口,提供布局中各类元素的可视化编辑与操作的环境。

如下图所示,为一个布局窗口,窗口中显示了一个布局对象。

示例

以下代码示范了如何创建并显示布局窗口。

CopyC#
public void TestMapLayoutControl()
{
    //设置布局窗口
    MapLayoutControl mapLayoutControl = new MapLayoutControl();
    mapLayoutControl.IsHorizontalScrollbarVisible = true;
    mapLayoutControl.IsVerticalScrollbarVisible = true;            

    //显示布局窗口
    this.Controls.Add(mapLayoutControl);
    mapLayoutControl.Dock = DockStyle.Fill;
}

继承层次

System..::.Object
  System..::.MarshalByRefObject
    System.ComponentModel..::.Component
      System.Windows.Forms..::.Control
        System.Windows.Forms..::.ScrollableControl
          System.Windows.Forms..::.ContainerControl
            System.Windows.Forms..::.UserControl
              SuperMap.UI..::.MapLayoutControl
                SuperMap.Desktop..::.DesktopMapLayoutControl

请参见