Exemplo n.º 1
0
        public static bool Open(Window owner, string title, string type, string text, double width, double height)
        {
            RxAlertWindow taw = new RxAlertWindow(title, width, height);

            return(taw.OpenDialog(owner, type, text));
        }
Exemplo n.º 2
0
        public static bool Open(Window owner, string title, string type, string text)
        {
            RxAlertWindow taw = new RxAlertWindow(title, double.NaN, double.NaN);

            return(taw.OpenDialog(owner, type, text));
        }