AddNew() public method

public AddNew ( CoordinateSystemDefinition cs ) : void
cs FdoToolbox.Core.CoordinateSystems.CoordinateSystemDefinition
return void
コード例 #1
0
ファイル: CoordSysCatalog.cs プロジェクト: beritec/fdotoolbox
        private void btnAdd_Click(object sender, EventArgs e)
        {
            CoordinateSystemDefinition cs = CoordinateSystemDialog.NewCoordinateSystem();

            if (cs != null)
            {
                _presenter.AddNew(cs);
            }
        }