示例#1
0
 private void DogEventResultsToolStripMenuItem_Click( object sender, EventArgs e )
 {
     using( var dlg = new DogEventResultsForm( SelectedDogEvent ) )
     {
         dlg.ShowDialog( this );
     }
 }
示例#2
0
        private void DogEventResultsButton_Click( object sender, EventArgs e )
        {
            if( CurrentDog == null )
                return;

            using( var dlg = new DogEventResultsForm( CurrentDog ) )
            {
                dlg.ShowDialog( this );
            }
        }