//Hàm hỗ trợ gọi hộp thoại input
        private string inputDiaLog(string inputBoolen, bool animation)
        {
            var screen = new NottifyDiaglog(inputBoolen, animation);

            if (screen.ShowDialog() == true)
            {
                return(screen.strInput);
            }
            return(null);
        }
示例#2
0
        //Hàm hỗ trợ gọi messagebox viết sẵn
        private void Notify(string noty, bool animation)
        {
            var screen = new NottifyDiaglog(noty, animation);

            screen.ShowDialog();
        }