일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Flutter 설치
- flutter getting started
- flutter 총정리
- page navigation
- php 문자치환
- StoreKit
- 검색구현
- Review
- 크기 리사이즈
- flutter 완벽 가이드
- AppStore
- 문자치환
- flutter 실행하기
- Swift
- SKStoreReviewController
- php ftp download
- php ftp upload
- android function
- ftp연동
- 정규식 문자치환
- flutter 설치하기
- 플러터
- db connect
- ftp upload
- php
- ftp download
- php 게시판
- regexp
- flutter 환경설정
- flutter 앱 만들기
- Today
- Total
AppleTree iOS
Modal & Modeless 대화상자 본문
Form1==============================================
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication17
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 form2 = new Form2();
if (radioButton1.Checked ==true)
{
form2.Text = "ModalDialogBox";
form2.ShowDialog();
}
else if(radioButton2.Checked == true)
{
form2.Text = "ModelessDialogBox";
form2.Show();
}
}
}
}
Form2==========================================================
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication17
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
}
}