AutoResizedEvent.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / AutoResizedEvent.cs / 1305600 / AutoResizedEvent.cs

                            using System; 
using System.Collections;
using System.Windows.Threading;

using System.Windows.Media; 
using System.Runtime.InteropServices;
using MS.Win32; 
 
namespace System.Windows
{ 
    /// 
    ///     Handler for the AutoResized event on HwndSource.
    /// 
    public delegate void AutoResizedEventHandler(object sender, AutoResizedEventArgs e); 

    ///  
    ///     Event arguments for the AutoResized event on HwndSource. 
    /// 
    public class AutoResizedEventArgs : EventArgs 
    {
        /// 
        ///     Creates a new AutoResized event argument.
        ///  
        /// The new size of the HwndSource.
        public AutoResizedEventArgs(Size size) 
        { 
            _size = size;
        } 

        /// 
        ///     The new size of the HwndSource.
        ///  
        public Size Size
        { 
            get 
            {
                return _size; 
            }
        }

        private Size _size; 
    }
} 
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Collections;
using System.Windows.Threading;

using System.Windows.Media; 
using System.Runtime.InteropServices;
using MS.Win32; 
 
namespace System.Windows
{ 
    /// 
    ///     Handler for the AutoResized event on HwndSource.
    /// 
    public delegate void AutoResizedEventHandler(object sender, AutoResizedEventArgs e); 

    ///  
    ///     Event arguments for the AutoResized event on HwndSource. 
    /// 
    public class AutoResizedEventArgs : EventArgs 
    {
        /// 
        ///     Creates a new AutoResized event argument.
        ///  
        /// The new size of the HwndSource.
        public AutoResizedEventArgs(Size size) 
        { 
            _size = size;
        } 

        /// 
        ///     The new size of the HwndSource.
        ///  
        public Size Size
        { 
            get 
            {
                return _size; 
            }
        }

        private Size _size; 
    }
} 
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK