Items related to Windows Forms Programming in C#

Windows Forms Programming in C# - Softcover

  • 3.48 out of 5 stars
    25 ratings by Goodreads
 
9780321116208: Windows Forms Programming in C#

Synopsis

A guide to using the Microsoft .NET forms package covers such topics as form layout, custom drawing, data binding, multithreated user interfaces, and moving from MFC.

"synopsis" may belong to another edition of this title.

About the Author

Chris Sells is a content strategist on the Microsoft MSDN content team. Previously, he was the director of software engineering at DevelopMentor. Chris is the author of Windows Telephony Programming (Addison-Wesley, 1998) and Windows Forms Programming in Visual Basic .NET (Addison-Wesley, 2004), and coauthor of Effective COM (Addison-Wesley, 1999), ATL Internals (Addison-Wesley, 1999), and Essential .NET, Volume 1 (Addison-Wesley, 2003).



0321116208AB07142003

From the Back Cover

Praise for Windows Forms Programming in C#

&;Chris may have a strong affinity for semi-colons, but anybody who&;s programming Windows Forms needs to read this book.&;

     &;Brian Randell, Visual Basic Guru and DevelopMentor Instructor

&;Chris Sells has done it again. This book has everything a developer needs to know to write serious WinForms applications. Chris leaves no stone unturned in explaining the WinForms programming model and arming developers with the knowledge they need to exploit WinForms to the fullest. And, as if that weren&;t enough, Chris&;s writing style makes this book a page-turner for geeks. I couldn&;t put it down! Until John Grisham gets the .NET religion, you won&;t find a better WinForms book anywhere.&;

     &;Jeff Prosise, co-founder of Wintellect, author of Programming Microsoft .NET

&;Chris is clearly *the* expert on web deployment of WinForms. In this book, Chris explains this material clearly and the power of the technology really shows. Unlike other WinForms books, this manuscript takes a more practical approach to the use of programming tools, such as Visual Studio. Sells&;s book strikes a nice balance between theory and practice. Windows Forms is an important technology that needs more press. Chris Sells&; book is in great position to be the definitive work on the emerging technology.&;

     &;Brian Graff, Sr. SW Engineer, PreEmptive Solutions, Inc.

&;Chris has written the best WinForms book around. Period.&;

     &;Pierre Nallet, DevelopMentor Instructor

&;Chris does a nice job of presenting the core elements of WinForms complete with many concise samples and graphic depictions of UI features in action. Even more compelling, however, is how Chris anticipates how most developers will want to use these features, and presents techniques and paradigms of usage that will be invaluable for any serious WinForms developer. This book is destined to become dog-eared in the hands anyone building WinForms applications.&;

     &;Fritz Onion, DevelopMentor instructor and author of Essential ASP.NET

&;I don&;t want just a description of the WinForms widgets. I can get that online or from other books. What I want is a roadmap for pitfalls to avoid, and innovative solutions for common problems. That is where this book shines.&;

     &;Johan Ericcson, SW Engineer, Agilent

&;This is the definitive book for every Windows Programmer.&;

     &;Fumiaki Yoshimatsu, Sr. Engineer, Intoferia Corporation

&;After browsing through countless books that introduce me to Windows Forms basics, it is refreshing to find a book that dives right into some real hard-core programming. This is, without a doubt the best and most useful C#/WinForms book I have ever read. I would suggest this book to be essential reading for very serious .NET WinForms developer who wants to work smarter instead of harder.&;

     &;Serge Shimanovsky, Software Developer, Rueters Group PLC

&;In this book, Chris Sells discusses how the Windows Forms classes and their supporting infrastructure can be used to write robust and rich smart client applications. If you&;re an experienced Windows programmer who has previously used MFC or directly utilized the Win32 API to write such applications, you will find Chris&;s direct delivery very appropriate for transferring your knowledge to the managed classes. If you&;re a developer with less Windows development experience, you&;ll find the treatment of core concepts in application UI programming indispensable.&;

     &;From the foreword by Mike Blaszczack, Architect, SQL Server Data Warehousing, Microsoft

"I think this book does a great job of hitting a huge number of features&;sometimes I forget how much there is to WinForms!" &;Chris Anderson, Software Architect, Microsoft Windows Forms team

Programming Windows Forms in C# is the ultimate guide to using the Microsoft .NET forms package. Readers learn how to build smart client applications that take full advantage of both the rich user interface features of the Microsoft Windows operating system and the deployment features of HTML-based applications. Author Chris Sells draws upon his WinForms research and programming experience to provide what the Windows Forms documentation could not: a clear picture of exactly how C# programmers will want to use WinForms.

Well-written and easy to navigate, this book presents the building blocks of WinForms and the best practices for creating stand-alone client applications and front ends to databases and Web services. Readers gain an understanding of the rationale behind aspects of WinForms' design and will find out how to avoid or solve common problems. Figures illustrate WinForms' user interface features and code samples are used throughout the book to demonstrate best practices. All code has been tested with Visual Studio .NET 1.1 and is available at www.sellsbrothers.com, where readers will also find updates to the book.

This book focuses on the topics readers need to understand in order to build real-world applications. These topics include:

Form layout
  • Multiple top-level windows
  • Non-rectangular windows
  • Accessing data from the middle tier, filesystems, XML, databases, and Web services
  • Classes outside the System.WinForms namespace, including System.Drawing and System.Security
  • Custom drawing
  • Hosting and building controls
  • Design-time integration
  • Data binding
  • Multithreaded user interfaces
  • Deploying WinForms over the Web
  • Moving from MFC
  • Delegates and events
  • Serialization basics

Programming Windows Forms in C# is the tutorial for experienced Windows programmers who are serious about mastering Windows Forms.



Excerpt. © Reprinted by permission. All rights reserved.

As a fairly public figure in the Windows developer community, I often get asked if I think that .NET is going to "take off." I always answer the same thing; it's not a matter of "if," it's a matter of "when." Microsoft's .NET Framework has so many benefits that even as a grizzled old C++/Win32 guy, I wasn't able to resist the siren song of a managed development environment. It's ironic that the temporary dip in the economy has caused folks to avoid anything new just when .NET comes along to deliver significant reductions in time to market and cost while simultaneously increasing code quality. The organizations that have already adopted .NET know that it's going to have a long and happy life, especially as it gets pushed further and further into Microsoft's own plans for the future of the Windows platform, both on the server and on the client.

The primary server-side technology in .NET is ASP.NET, which provides the infrastructure needed to build web sites and web services. ASP.NET provides the reach to deploy web sites to anyone by aiming at the baseline of features provided by the middle generation web browsers. To provide the highest level of functionality possible, ASP.NET does most of the work on the server-side, leaving the client-side HTML as a thin wrapper to trigger server-side requests for new pages of data. The server-side handles practically everything, from data manipulation to user preferences to the rendering of simple things like menus and toolbars. This model provides the greatest availability across operating systems and browsers.

If, on the other hand, your targeted customers are Windows users, an HTML-based experience limits the users to a lowest-common denominator approach that is unnecessary. In fact, in an attempt to provide a richer client-side experience, many organizations that know they're targeting Windows users require specific versions of Microsoft's Internet Explorer (IE) web browser. However, as soon as that happens, IE becomes less of a browser and more of an HTML-based application runtime. And for that purpose, the HTML object model is fairly primitive, often requiring a lot of work to do things that are normally simple (like keeping track of a user's session state). If you're going to be targeting Windows users, the .NET Framework provides a much richer set of objects for building interactive user interfaces.

This brings me to the subject of this book: Windows Forms (WinForms). WinForms is the face of .NET on the client, providing a forms-based development environment meant to provide the best of the UI object models that have come before it. In addition, it provides one feature that no Windows-based development framework has provided to date - the deployment features of HTML-based web applications. The ability to combine the richness of Windows applications with the deployment of web applications signals a completely new world for Windows developers; one that makes me more than happy to give up the mess of unmanaged code.

Audience

When writing this book, I had two target audiences in mind. I wanted to provide real-world WinForms coverage for both the programmer that had already programmed in .NET as well as for the programmer that hadn't. Towards that end, I do briefly introduce core .NET topics as they come up. However, the .NET Framework itself is a large area that this book doesn't pretend to cover completely. Instead, when I think more information would be useful to the reader, I reference another work that provides the full details. In particular, I find that I've referenced Essential .NET, by Don Box, with Chris Sells, a great deal, making it a good companion to this book. In this same category, I can also recommend Pragmatic ADO.NET, by Shawn Wildermuth, Advanced .NET Remoting, by Ingo Rammer, .NET Web Services, by Keith Ballinger and Applied Microsoft .NET Framework Programming, by Jeffrey Richter.

Two core .NET topics are of special importance to WinForms programmers and I cover them in more detail in Appendix B: Delegates & Events and Appendix C: Serialization Basics. The coverage of delegates and events is particularly important if you're new to .NET, although I don't recommend diving into that topic until you've got a WinForms-specific frame of reference (which is provided about 1/3rd of the way through Chapter 1: Hello, Windows Forms).

I'd like to provide one other note for potential readers. Many years ago, I wrote my first five-day training course. The topic was Windows 95 and included a few hours of coverage on the new controls; what they looked like, what their properties, methods and events were and how to program against them. Those hours seemed to take days for both me and for the students. The details of a particular control are only interesting when you're putting that control to use and when that time comes, the control-specific documentation and IntelliSense do a marvelous job of giving you the information you need. Towards that end, this book covers none of the standard controls completely. Instead, as each control is interesting the context of the current topic, like the DataGrid control in Chapter 13: Data Binding & Data Grids, that control is covered appropriately. Also, Chapter 8: Controls and Chapter 9: Design-Time Integration introduces the broad range of categories of controls that WinForms provides, including the category of non-visual controls called components in .NET. Finally, to give you a visual to go with all of the controls and components and to introduce you to the major functionality of each of them, Appendix D: Standard WinForms Components & Controls provides a list of the standard controls and components. I wouldn't think to waste your time by attempting to be more thorough that that reference documentation that comes with the .NET Framework SDK and Visual Studio .NET. Instead, this book focuses on the real-world scenarios that aren't already covered in detail elsewhere.

Conventions

For those of you that have decided to take the plunge with this book, I'd like to thank you for your faith and express my hope that I live up to in. To aid you in reading the following text, I want to let you in on some conventions I use in my writing.

First and foremost, the wonderful thing about WinForms is how visual it is, which is why I use a lot of figures to illustrate its features. Some of those pictures really need to be color to make the point, so be sure to check the color pages at the center of this book for those figures.

As useful as figures are, I think primarily in code. Code will be shown in mono-faced type:

System.Console.WriteLine("Hello, WinForms.");

Console application activation will also be shown in mono-faced type:

C:\> csc.exe hello.cs

When a part of a code snippet or a command line activation is of particular interest, I mark it in bold and often provide a comment:

// Notice the use of the .NET System namespace
System.
Console.WriteLine("Hello, WinForms.");

When I want to direct your attention to a piece of code even more fully, I'll replace superfluous code with ellipses:

class MyForm : System.Windows.Forms.Form {
  ... // fields
  private void MyForm_Load(object sender, System.ComponentModel.EventArgs e) {
    MessageBox.Show("Hello from MyForm");
  }

}

Further, to make the printed code more readable, I'll often drop namespaces and protection keywords when they don't provide additional information:

// Shortened "System.Windows.Forms.Form" base class
class MyForm : Form {
  ... // fields
  // Removed "private" specifier and "System.ComponentModel" namespace
  void MyForm_Load(object sender, EventArgs e) {
    MessageBox.Show("Hello from MyForm");
  }
}

When showing .NET attributes, I use their full name:

SerializableAttribute
class MyCustomType {...}

Some languages, like C#, allow the "Attribute" suffix to be dropped for convenience, but that makes it hard to find the details of the attribute class in the online documentation.

Also, I sometimes take error checking out of the printed code for clarity, but try to leave it in the sample code that comes with this book.In the prose itself, I often put a word or phrase in italics to indicate a new term that I'm about to define. As an example of this kind of term and its definition, hegemony is preponderant influence or authority, as well as a useful business practice.

Finally, I often mention keyboard shortcuts because I find them convenient. The ones I mention are the default Visual Studio Developer key bindings. If you're not using those key bindings, you'll need to map the keyboard shortcuts to your own settings.

Contact

The up-to-date information for this book, including the source code and the errata, are maintained at http://www.sellsbrothers.com/. This site also provides a way for you to send feedback to me about the book, both complimentary and less so.



0321116208P05022003

"About this title" may belong to another edition of this title.

Search results for Windows Forms Programming in C#

Stock Image

Sells, Chris
Published by AddisonWesley Professional, 2003
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Paperback

Seller: Your Online Bookstore, Houston, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. Seller Inventory # 0321116208-3-25457161

Contact seller

Buy Used

US$ 6.62
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
Published by AddisonWesley Professional, 2003
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Softcover

Seller: Hawking Books, Edgewood, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. Meets the good condition guidelines. Has some crinkling and staining. Has wear. Five star seller - Buy with confidence! Seller Inventory # X0321116208X3

Contact seller

Buy Used

US$ 6.63
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Paperback

Seller: ThriftBooks-Dallas, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 3.15. Seller Inventory # G0321116208I3N00

Contact seller

Buy Used

US$ 6.84
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Paperback

Seller: ThriftBooks-Dallas, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Fair. No Jacket. Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend Less 3.15. Seller Inventory # G0321116208I5N00

Contact seller

Buy Used

US$ 6.84
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Paperback

Seller: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 3.15. Seller Inventory # G0321116208I3N00

Contact seller

Buy Used

US$ 6.84
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Paperback

Seller: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Very Good. No Jacket. May have limited writing in cover pages. Pages are unmarked. ~ ThriftBooks: Read More, Spend Less 3.15. Seller Inventory # G0321116208I4N00

Contact seller

Buy Used

US$ 6.84
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
Published by AddisonWesley Professional, 2003
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Softcover

Seller: Goodwill Books, Hillsboro, OR, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. Signs of wear and consistent use. Seller Inventory # 3IIJZF0028XV

Contact seller

Buy Used

US$ 3.30
Convert currency
Shipping: US$ 3.99
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Softcover First Edition

Seller: Better World Books: West, Reno, NV, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Very Good. 1st. Used book that is in excellent condition. May show signs of wear or have minor defects. Seller Inventory # 9736507-6

Contact seller

Buy Used

US$ 7.56
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Sells, Chris
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Softcover First Edition

Seller: Better World Books, Mishawaka, IN, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. 1st. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Seller Inventory # GRP37935861

Contact seller

Buy Used

US$ 7.56
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 2 available

Add to basket

Stock Image

Sells, Chris
ISBN 10: 0321116208 ISBN 13: 9780321116208
Used Softcover First Edition

Seller: Better World Books: West, Reno, NV, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. 1st. Used book that is in clean, average condition without any missing pages. Seller Inventory # GRP11306413

Contact seller

Buy Used

US$ 7.56
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

There are 13 more copies of this book

View all search results for this book