Form Display Methods

This code region contains subroutines used to display and exit a form.

#Region " Form Display Methods - Code used to display this form."
 
    Private Sub myForm_Load(sender As Object, e As EventArgsHandles Me.Load
        ReadFormSettingsXmlFile()
    End Sub
 
    Private Sub btnExit_Click(sender As Object, e As EventArgsHandles btnExit.Click
        Me.Close()
    End Sub
 
    Private Sub myForm_FormClosing(sender As Object, e As FormClosingEventArgsHandles Me.FormClosing
        SaveSettings()
    End Sub
 
    Private Sub SaveSettings()
        WriteFormSettingsXmlFile()
    End Sub
 
#End Region