System.Drawing.Size Structure
Information   Base Types   Related Resources

Represents the size of a rectangular region with an ordered pair of width and height.

  • Namespace: System.Drawing
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: System.Drawing.dll

  • System.ValueType
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (88)Discussions (1014)MembersRotorChanges
    Articles

    Page: 1234
    A Calculator using C#
    The Code Project
    This is basic Calculator program written in C# which makes use of thevarious Windows Form controls.
    .NET Remoting ( A Simple Approach)
    C# Help
    .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Java's RMI, but definately more difficult than creating a WebService. In this article, we will create a remote object that will return rows from a database table. For the sake of simplicity i have used the NorthWind database that is packed with the installation of the Microsoft SQL Server.
    .NET Remoting - The Interface Approach
    C# Help
    In this article, we will create a remote object, and access this object using an interface. This method is important when creating a physical separation between business tier and consumer code. In traditional Remoting approaches, to access a remote object, you need a copy of that object on the client machine. With this approach, the metadata is split into a separate library that can be copied to the client machine.
    A C# Grep Application
    The Code Project
    Presenting a small C# Application which is providing a Grep like functionality under .NET.
    A Docking Control That Can Be Dragged And Resized by the User
    The Code Project
    One of the first features of C# that took my interest was the ability to Dock a Control onto the edge of a Form. Now I could attach a Control (or more likely a composite control by deriving from UserControl) onto a Form edge and quickly construct a useful looking application. But there is one crucial factor missing from this scenario. The user has no discretion over the size or positioning of this docked control. I want the user to be able to drag the control to a different edge and be able to resize the control so that they can customise the application area to suit their own preferences.
    Accessing Oracle Database
    C# Corner
    This source code shows you how to connect to an oracle database and do operations such as select, insert, update and delete.
    Adding a Control to a Form Programmatically
    C# Corner
    In this article I explain how to Add a control to a form programmatically. This is useful for developer who is not using VS.NET IDE.
    An Overview Of Link Label In C#
    C# Help
    The LinkLabel control exhibits links to other objects, such as files or Web pages. Class LinkLabel is derived from class Label and therefore inherits all of class Label’s functionality. A LinkLabel looks as underlined text. When the mouse moves above the link, the pointer modify to a hand. This is alike to the behavior of a hyperlink in a Web page. The link can change color to indicate whether the link is new, visited or active.
    Animate with Pocket PC
    C# Corner
    This article discusses programming for a Pocket PC in general complete with a code sample.
    Best Practices for Using DTS for Business Intelligence Solutions
    MSDN
    Discover the best practices for using Data Transformation Services (DTS) within the Data Warehousing Framework to capture and present data as Business Intelligence solutions.
    BookStock v2- Samples to Show Simple OleDb.NET Connectivity
    Master C#
    The bookstock example I had previously created for .NET SDK beta1 consisted of 3 samples to show how to perform basic ADO.NET connectivity with a Ms Access 2000 Database and how to Add, View , Edit , Delete records from it. It also demonstrates how to DataBind Textboxes to a DataSet object.
    BUG: Focus on a Control That Does Not Support the CausesValidation Property Suppresses Validation of Unvalidated Controls in the User Control
    http://www.kbalertz.com/
    (814350) - The pending validation of the controls in a user control is suppressed if the following conditions are true: There are multiple controls in the user control. -and- In the user control, you move from a control with the CausesValidation property set to...
    BUG: You cannot use the ImageList property to add images whose size is 32x32
    http://www.kbalertz.com/
    (834532) - Describes a limitation on ImageSize properties. If you set the ImageSize property of an ImageList component to 32x32, you cannot later add images that are 32x32 to the ImageList component.
    Bugslayer: .NET Internationalization Utilities
    MSDN
    This month John brings you three .NET internationalization utilities
    Building Text to Speech Applications using SAPI 5.1 and C#.
    C# Corner
    The Speech application programming interface (SAPI) considerably decreases the code necessary for an application to use speech recognition and text-to-speech, making speech technology more handy and robust for broad range of applications.
    Building Windows Forms on-the-fly with XML and C#
    C#Today
    In this article, Ashiwn Kamanna takes the concept of an XML driven Form builder a step further than the basics as he discusses how to eliminate the requirement for Form development, not only in an ASP based web application, but also in any potential client of an application. He discusses how to build a Form dynamically in a C# based windows application, and also discusses some object oriented patterns as he walks us through an example.
    Bunnyaruga: GAPI, Hekkus, Basics of Deployment
    The Code Project
    This article shows an example of a game that uses the GAPI and Hekkus libraries. It also shows a nice and free way of deploying your games/applications without requiring the .NET Framework installed on the end user machines.
    C# Calculator Using Windows Forms
    C# Help
    This is a basic calculator program using Windows Forms. You will be able to do mathematical operations like addition,subtraction etc.
    C# Form Sizing
    C# Help
    A form, sizing itself to the borders of the screen working area. I subscribed this article because I had a little problem when I wanted to make my form take the whole free screen working area.
    Christian's Code Project Screensaver
    The Code Project
    Well, here it is. I'm sorry that the article is non-existant, it is very late, and I need to go to bed, but I couldn't wait to post the fruit of my labours. I will write a full article in support of my screen saver hopefully tomorrow, but I don't have access to any web space, so I'm going to use Chris's to show you all what I have done so far. The screensaver is written in C#, it simply creates a form that takes up the full screen, and it can only be turned off my pressing a key. This is because when Chris has his XML feed going, I will scroll the latest links from CP in semi transparent text, and moving the mouse will generate a cursor, and clicking on an item will stop the screen saver and launch the URL.
    Color ProgressBar
    The Code Project
    An attractive and fancier ProgressBar
    Common .NET Libraries for Developers
    MSDN
    Identifies and defines many of common namespaces that you will use when developing .NET applications, and provides examples of the most common classes and methods in those namespaces.
    Console Based Windows Form
    C# Help
    Creating a custom DataGridColumnStyle in C#
    C#Today
    The .NET framework provides many unique controls like the DataGrid, which is a data bound list control that displays the items from a data source in a table. The DataGrid is the most powerful and flexible control in the .NET toolbox. In this article, Chad DePue takes a look at one aspect of the DataGrids flexibility, by creating a custom column. The DataGrid provides two types of columns for free, the DataGridTextBoxColumn and the DataGridBoolColumn, but there are many types of data that wont fit into either of these two column types. In the example given, we want to search a directory for icon (.ICO) files and display each icon as a row in the DataGrid. Neither of the existing column styles will do this for us, so we create our own.
    Creating Controls
    GotDotNet
    This topic demonstrates how you can create Windows Forms controls. It covers the basics of creating a control. In addition, this topic covers adding painting logic to a control, exposing properties and events, using control licensing, and adding design-time behavior to your control.
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com