コード例 #1
0
 public SoftLicTypesViewport(SoftLicTypesViewport softLicTypesViewport, IMenuCallback menuCallback)
     : this(menuCallback)
 {
     DynamicFilter = softLicTypesViewport.DynamicFilter;
     StaticFilter  = softLicTypesViewport.StaticFilter;
     ParentRow     = softLicTypesViewport.ParentRow;
     ParentType    = softLicTypesViewport.ParentType;
 }
コード例 #2
0
        public override Viewport Duplicate()
        {
            var viewport = new SoftLicTypesViewport(this, MenuCallback);

            if (viewport.CanLoadData())
            {
                viewport.LoadData();
            }
            return(viewport);
        }