1 / 21

Dialog Boxes

Dialog Boxes. 1. Предназначение. Диалоговите прозорци са част от операционната система; Улесняват потребителя, когато трябва да се: Съхранява файл; Отваря файл; Разглеждане на йерархията на папките; Форматира текст: Промяна на шрифт; Цвят. 2. Местоположение в инструменталната кутия.

Download Presentation

Dialog Boxes

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Dialog Boxes

  2. 1. Предназначение • Диалоговите прозорци са част от операционната система; • Улесняват потребителя, когато трябва да се: • Съхранява файл; • Отваря файл; • Разглеждане на йерархията на папките; • Форматира текст: • Промяна на шрифт; • Цвят.

  3. 2.Местоположение в инструменталната кутия

  4. 3. Блокова схема на диалогови прозорци

  5. 4. Диалогов прозорец ColorDialog

  6. 5. Свойства

  7. 6. Методи на диалоговия прозорец ColorDialog

  8. 7. Практическа задача • Създайте следния потребителки интерфейс. • Програмирайте бутона: PrivateSubbtn_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handlesbtn.Click If cld1.ShowDialog <> Windows.Forms.DialogResult.CancelThen lbl1.ForeColor = cld1.Color End If End Sub

  9. 8. Диалогов прозорец FontDialog

  10. 9. Свойства на FontDialog

  11. 10. Практическа задача • Създайте потребителски интерфейс с една текст бокс и бутон. • Програмирайте бутона: PrivateSub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click If FontDialog1.ShowDialog <> Windows.Forms.DialogResult.CancelThen RichTextBox1.ForeColor = FontDialog1.Color RichTextBox1.Font = FontDialog1.Font End If End Sub

  12. 11. Диалогов прозорец OpenFileDialog

  13. 12. Свойства на OpenFileDialog

  14. 13. Практическа задача • Създайте потребителски интерфейс с Picture Box и бутон. • Програмирайте бутона: PrivateSub Button1_Click(sender As Object, e As EventArgs) HandlesButton1.Click If OpenFileDialog1.ShowDialog <> Windows.Forms.DialogResult.CancelThen PictureBox1.Image = Image.FromFile(OpenFileDialog1.FileName) End If End Sub

  15. 14. Диалогов прозорец SaveFileDialog

  16. 15. Практическа задача • Създайте потребителски интерфейс с RichTexBoxи бутон. • Програмирайте бутона: PrivateSub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click SaveFileDialog1.Filter = "TXT Files (*.txt*)|*.txt" If SaveFileDialog1.ShowDialog = Windows.Forms.DialogResult.OKThen My.Computer.FileSystem.WriteAllText (SaveFileDialog1.FileName, RichTextBox1.Text, True) End If End Sub

  17. 16. Диалогов прозорец PrintDialog

  18. 17. Практическа задача • Създайте потребителски интерфейс с един бутон. • Програмирайте бутона: PrivateSub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click PrintDialog1.Document = PrintDocument1 PrintDialog1.PrinterSettings = PrintDocument1.PrinterSettings PrintDialog1.AllowSomePages = True if PrintDialog1.ShowDialog = DialogResult.OKThen PrintDocument1.PrinterSettings = PrintDialog1.PrinterSettings PrintDocument1.Print() End If End Sub

More Related