반응형 WPF Message Box1 [WPF] Window 이용한 Popup Dialog Alert Box 생성 기본 WPF에서 제공하는 Message Box는 예쁘지 않아서 커스터마이징 한 Window를 Message Box 대신하여 사용한다. Press this for Pop-up Dialog! namespace WpfTestProject2 { public partial class MainPage : Page { public MainPage() { InitializeComponent(); } private void Popup_Button_Click(object sender, RoutedEventArgs e) { PopupWindow popupWindow = new PopupWindow(); popupWindow.ShowDialog(); } } } Escape the beluga from the aquarium!.. 2022. 8. 19. 이전 1 다음 반응형