//

        public MessageBoxWindow(string messageText, string caption, string windowname, Button.ClickDelegate clickHandler)
        {
            this.messageText = messageText;
            this.caption = caption;
            this.Name = this.windowname = windowname;
            this.clickHandler = clickHandler;
        }
示例#2
0
        //

        public MessageBoxWindow(string messageText, string caption, string windowname, Button.ClickDelegate clickHandler)
        {
            this.messageText  = messageText;
            this.caption      = caption;
            this.Name         = this.windowname = windowname;
            this.clickHandler = clickHandler;
        }