コード例 #1
0
ファイル: MainMDIForm.cs プロジェクト: dannyray2/PeggleEdit
        public void UpdateProperties(LevelEntry[] objects)
        {
            if (mPropertiesToolWindowInfo == null)
            {
                return;
            }

            if (mPropertiesToolWindowInfo.IsDisposed)
            {
                return;
            }

            PropertiesToolWindow form = mPropertiesToolWindowInfo.DockableForm as PropertiesToolWindow;

            form.UpdatePropertyGrid(objects);
        }