コード例 #1
0
ファイル: WindowManager.cs プロジェクト: GreggBzz/Outerspace
        public void MessageBox(string caption, string text, int icon, int buttons, int parentboxid, ref CWindow parent)
        {
            CMessageBoxWindow aMsgBox = new CMessageBoxWindow(caption, text, icon, buttons, parentboxid, ref parent);

            aMsgBox.DoModal();
            WindowCollection.Add(aMsgBox);

            ResetWindowIndexes();
        }