1 / 6

#05 Windows Control, Events and Event Handlers

#05 Windows Control, Events and Event Handlers. Windows Control. Windows Control example. Events and Event Handlers. What is an event What is an event handler. Events example. namespace BlackJackGUI { public partial class BlackJackWindow : Form {

csilla
Download Presentation

#05 Windows Control, Events and Event Handlers

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. #05 Windows Control, Events and Event Handlers

  2. Windows Control

  3. Windows Control example

  4. Events and Event Handlers • What is an event • What is an event handler

  5. Events example namespaceBlackJackGUI { public partial class BlackJackWindow : Form { public BlackJackWindow() { InitializeComponent(); textBoxGame.AppendText("♠ ♣ ♥ ♦ BlackJack:\n"); } private void SaveLog_Click(object sender, EventArgs e) { File.Copy(@"../../BlackJack.tmp", @"../../BlackJackLog.txt",true); } }

  6. Custom Events • Creating custom events

More Related