Windows Forms Introduction

Slides:



Advertisements
Similar presentations
Introduction Windows Explorer This tutorial will explain some aspects of file management using Windows Explorer This tutorial will explain some aspects.
Advertisements

Windows XP / Microsoft Word Computer Applications.
Chapter 1: An Introduction to Visual Basic 2012
Operating Systems First Program to load. Controls Hardware And software. Enable User to operate PC( Personal Computer) –Examples: DOS: Disk Operating.
Chapter 1: An Introduction to Visual Basic.NET Programming with Microsoft Visual Basic.NET, Second Edition.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
1 Introduction to the Visual Studio.NET IDE Powerpoint slides modified from Deitel & Deitel.
1 Workshop 4 (B): Visual Basic Test Project Mahidol University June 13, 2008 Paul Evenson University of Delaware Bartol Research Institute.
Tutorial 1: An Introduction to Visual Basic.NET1 Tutorial 1 An Introduction to Visual Basic.NET.
Chapter 1: An Introduction to Visual Basic 2005 Programming with Microsoft Visual Basic 2005, Third Edition.
Lecture Set 3 Introduction to Visual Basic Concepts Part C – Design Mode Properties In-Depth Look at Common Features of Controls.
Visual Studio.NET Part 2 dbg --- Using the VS.NET Integrated Development Environment.
BIM313 – Advanced Programming Building Forms 1. Contents Building Forms – The Basics – Changing a form’s appearance – Changing a form’s background color.
Exploring Your Desktop To run presentation, please click on bottom arrow to right to change to next frame.
Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 2 Creating a User Interface.
Introduction to Computers and Windows. Overview  What is a computer?  What is an operating system?  Starting and Shutting Down a computer  The mouse.
Visual Studio.NET Part 2 dbg --- Using the Integrated Development Environment.
Representing Data: Constants and Variables CHAPTER THREE Matakuliah: T0063 – Pemrograman Visual Tahun: 2009.
Graphical User Interfaces 2 Tonga Institute of Higher Education.
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
In this activity, we are going to resize and move a window around the desktop with a mouse. 1Double-click the icon ‘My Computer’ to display its content.
Joe Hummel, PhD Dept of Mathematics and Computer Science Lake Forest College
C# GUI - Basics. Objectives.NET supports two types: WinForms, traditional, desktop GUI apps. WebForms – newer, for Web apps. Visual Studio.NET supports.
Chapter 2 – Introduction to the Visual Studio .NET IDE
1 Creating Windows GUIs with Visual Studio. 2 Creating the Project New Project Visual C++ Projects Windows Forms Application Give the Project a Name and.
Forms and Controls Part 3 dbg --- Naming conventions, Button, Event handlers, Label.
CS 2340: Programming in VB Lab 2 Due 9 pm, Friday, September 14 1.
Lab 2 Due 9 pm, Friday, September Put a “&” in button text The char after “&” is underlined and becomes the Access Key Example Text of btnExit:
Chapter 3 I Need a Tour Guide (Introduction to Visual Basic 2010) Clearly Visual Basic: Programming with Visual Basic nd Edition.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 3 Building an Application in the Visual Basic.NET Environment.
1NetBeans Tutorial Using the “Properties” menu, name the List “List1” and the button “Button1”. NetBeans Tutorial6.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
Programming with Microsoft Visual Basic 2012 Chapter 1: An Introduction to Visual Basic 2012.
GUI Programming Prepared by: Ahmad Ramin Rahimee Assistant Professor ICTI.
Programming with Microsoft Visual Basic 2008 Fourth Edition Chapter One An Introduction to Visual Basic 2008.
Representing Data: Constants and Variables
Chapter 4: Do-It-Yourself Designing (Designing Interfaces)
Chapter 3: I Need a Tour Guide (Introduction to Visual Basic 2012)
Chapter 1: An Introduction to Visual Basic .NET
Visual Basic .NET BASICS
Microsoft Visual Basic 2005: Reloaded Second Edition
Chapter 2: The Visual Studio .NET Development Environment
Object Orientated Programming using C#
Chapter 1: An Introduction to Visual Basic 2012
Microsoft Visual Basic 2005 BASICS
IS 350 Course Introduction
Looking at our “Getting Started” application
Chapter 2 – Introduction to the Visual Studio .NET IDE
BIL528 – Bilgisayar Programlama II
Programming with Microsoft Visual Basic th Edition
Visual programming Chapter 1: Introduction
Reference: COS240 Syllabus
Chapter 1: An Introduction to Visual Basic 2015
Introduction to Microsoft Windows
REVIEW FOR WINDOWS APPLICATIONS TEST ON FRIDAY- SEPT. 7, 2012
Creating a Windows Forms User Interface
Copyright © 2006 Thomas P. Skinner
Building an Application in the Visual Basic .NET Environment
Project Design, Forms and Buttons
6. WinForms 2003 C# GUI - Basics.
To download pictures to your computer:
Introduction to Excel for Beginners
Primary National Strategy
Primary National Strategy
Understanding Buttons and TextBoxes
Mu Editor – New User Cheat Sheet – CircuitPython Mode
Mu Editor – New User Cheat Sheet – CircuitPython Mode
Custom Forms with VBA in Excel In-Class Exercise #11
Presentation transcript:

Windows Forms Introduction

Creating a Project

Starting Point

Form Window Minimize Maximize Close System.Windows.Forms.Form

Opening Code View Right mouse click

Where are my codes?

In the background (Form1.cs) Base class - What is Partial?

In the background (Form1.Designer.cs) Comments Codes that composes form

TODO’s while stating a Project Rename file name of Form1. Change properties of Form1.

At the right of the screen Properties Window At the right of the screen Not : If you close the Properties Window accidentally, you may open it again from View menu.

Renaming a Form

Renames all references in the project Renaming a Form Renames all references in the project

Renaming a Form Final state of the form

Where is Main function?

Running the Program Or you may execute the program by pressing F5 key

Form Properties

Form Properties BackColor WindowState BackgroundImage AcceptButton Font FormBorderStyle Text Name GridSize Size StartPosition WindowState AcceptButton CancelButton ControlBox Icon MaximizeBox MinimizeBox ShowInTaskbar TopMost

Exercise Change the properties of the form and run it. Examine the differences.