TAILIEUCHUNG - Manning Windows Forms Programming (phần 11)

Tham khảo tài liệu 'manning windows forms programming (phần 11)', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Add a menu to display album properties continued Action Result 7 Display an error message if the album could not be opened. Note Here and throughout the remainder of the book we use the simplest form of the MessageBox dialog. Feel free to use an alternate form if you prefer. See chapter 8 for detailed information on the MessageBox class. if album null The properties for this album cannot be displayed. return 8 Display the AlbumEditDlg if the album is opened successfully. using AlbumEditDlg dlg new AlbumEditDlg album 9 If any changes are made by the user save these changes into the album file. Catch any errors that occur. if Save changes made by the user try catch Exception Unable to save changes to album. return 10 Also update any subitem text that might be affected by the user s changes. Update subitem settings MainForm. AlbumTitleColumn .Text bool hasPwd null 0 MainForm. AlbumPwdColumn .Text hasPwd y n 11 Dispose of the album at the end of the method. We employ the using statement to ensure that our dialog is properly disposed of at the end of the handler. Also note how multiple exceptional handling blocks are used to catch errors that occur. You may wonder if it is expensive to perform such operations especially if you are familiar with exception-handling mechanisms in languages like C and C where it indeed can be an expensive proposition to call try multiple times. In C the exception handling is built into the language and the compiler so checking for exceptions as we do here is not much more expensive than an if statement. The expense comes if an exception actually occurs since the compiler must 466 CHAPTER 14 List views then construct the Exception object unravel the call stack and clean up any objects as required plus locate the appropriate catch block for the particular exception. The fact that

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.