⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 opennetcf.drawing.xml

📁 windows mobile 5 下的渐变Button 按钮.
💻 XML
📖 第 1 页 / 共 5 页
字号:
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>OpenNETCF.Drawing</name>
    </assembly>
    <members>
        <member name="T:OpenNETCF.Drawing.BitmapEx">
            <summary>
            Encapsulates a GDI+ bitmap, which consists of the pixel data for a graphics image and its attributes. A BitmapEx object is an object used to work with images defined by pixel data. 
            </summary>
        </member>
        <member name="M:OpenNETCF.Drawing.BitmapEx.#ctor(System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the BitmapEx class with the specified size.  
            </summary>
            <param name="width"></param>
            <param name="height"></param>
        </member>
        <member name="M:OpenNETCF.Drawing.BitmapEx.#ctor(System.String)">
            <summary>
            Initializes a new instance of the System.Drawing.Bitmap class from the specified file.  
            </summary>
            <param name="filename"></param>
        </member>
        <member name="M:OpenNETCF.Drawing.BitmapEx.GetHbitmap">
            <summary>
            Creates a GDI bitmap object from this BitmapEx object.  
            </summary>
            <returns>A handle to the GDI bitmap object that this method creates.</returns>
        </member>
        <member name="M:OpenNETCF.Drawing.BitmapEx.LockBits(System.Drawing.Rectangle,System.Int32,System.Drawing.Imaging.PixelFormat)">
            <summary>
            BitmapEx object into system memory.  
            </summary>
            <param name="rect">A System.Drawing.Rectangle structure specifying the portion of the BitmapEx to lock.  </param>
            <param name="flags">Access level (read and write) for the BitmapEx object. ></param>
            <param name="format">PixelFormat enumeration specifying the data format of this BitmapEx object.</param>
            <returns>BitmapData object containing information about this lock operation.  </returns>
        </member>
        <member name="M:OpenNETCF.Drawing.BitmapEx.UnlockBits(OpenNETCF.Drawing.Imaging.BitmapData)">
            <summary>
            Unlocks this BitmapEx from system memory.  
            </summary>
            <param name="data"></param>
        </member>
        <member name="P:OpenNETCF.Drawing.BitmapEx.Width">
            <summary>
            Gets the width of this BitmapEx object.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.BitmapEx.Height">
            <summary>
            Gets the height of this BitmapEx object.
            </summary>
        </member>
        <member name="T:OpenNETCF.Drawing.Imaging.BitmapData">
            <summary>
            Specifies the attributes of a bitmap image. The BitmapData class is used by the LockBits and UnlockBits methods of the BitmapEx class.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.Imaging.BitmapData.PixelFormat">
            <summary>
            Gets or sets the format of the pixel information.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.Imaging.BitmapData.Scan0">
            <summary>
            Gets or sets the address of the first pixel data in the bitmap.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.Imaging.BitmapData.Stride">
            <summary>
            Gets or sets the stride width (also called scan width) of the bitmap object.  
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.Imaging.BitmapData.Width">
            <summary>
            Gets or sets the pixel width of the BitmapEx object. This can also be thought of as the number of pixels in one scan line.  
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.Imaging.BitmapData.Height">
            <summary>
            Gets or sets the pixel height of the BitmapEx object. 
            </summary>
        </member>
        <member name="T:OpenNETCF.Drawing.ContentAlignment2">
            <summary>
            Specifies alignment of content on the drawing surface.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.BottomCenter">
            <summary>
            Content is vertically aligned at the bottom, and horizontally aligned at the center.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.BottomLeft">
            <summary>
            Content is vertically aligned at the bottom, and horizontally aligned on the left.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.BottomRight">
            <summary>
            Content is vertically aligned at the bottom, and horizontally aligned on the right.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.MiddleCenter">
            <summary>
            Content is vertically aligned in the middle, and horizontally aligned at the center.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.MiddleLeft">
            <summary>
            Content is vertically aligned in the middle, and horizontally aligned on the left.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.MiddleRight">
            <summary>
            Content is vertically aligned in the middle, and horizontally aligned on the right.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.TopCenter">
            <summary>
            Content is vertically aligned at the top, and horizontally aligned at the center.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.TopLeft">
            <summary>
            Content is vertically aligned at the top, and horizontally aligned on the left.
            </summary>
        </member>
        <member name="F:OpenNETCF.Drawing.ContentAlignment2.TopRight">
            <summary>
            Content is vertically aligned at the top, and horizontally aligned on the right.
            </summary>
        </member>
        <member name="T:OpenNETCF.Drawing.FontEx">
            <summary>
            Defines a particular format for text, including font face, size, and style attributes. 
            </summary>
        </member>
        <member name="M:OpenNETCF.Drawing.FontEx.#ctor(System.String,System.Single,System.Drawing.FontStyle)">
            <summary>
            Initializes a new FontEx object that uses the specified attributes.  
            </summary>
            <param name="fontName">A string representation of the System.Drawing.FontFamily object.</param>
            <param name="size">The size of the new FontEx object.</param>
            <param name="fontStyle">The style of the new FontEx object.</param>
        </member>
        <member name="M:OpenNETCF.Drawing.FontEx.ToHfont">
            <summary>
            Returns a handle to this FontEx object.
            </summary>
            <returns>A Windows handle to this FontEx object.</returns>
        </member>
        <member name="P:OpenNETCF.Drawing.FontEx.Name">
            <summary>
            Gets the face name of this FontEx object.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.FontEx.Size">
            <summary>
            Gets the em-size of this FontEx object measured in the unit of this FontEx object.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.FontEx.Style">
            <summary>
            Gets style information for this FontEx object.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.FontEx.Angle">
            <summary>
            Gets sets the angle for the FontEx.
            </summary>
        </member>
        <member name="P:OpenNETCF.Drawing.FontEx.ClearType">
            <summary>
            Gets or sets a clear type for FontEx object.
            </summary>
        </member>
        <member name="T:OpenNETCF.Drawing.GDIPlus">
            <summary>
            Summary description for GDIPlus.
            </summary>
        </member>
        <member name="M:OpenNETCF.Drawing.GDIPlus.CreateFontIndirect(System.IntPtr)">
            <summary>
            This function creates a logical font that has the characteristics specified in the specified structure. 
            An application can subsequently select the font as the current font for any device context (DC). 			
            </summary>
            <param name="pLogFont">Long pointer to a <see cref="T:OpenNETCF.Drawing.GDIPlus.LOGFONT"/> that defines the characteristics of the logical font.</param>
            <returns>A handle to a logical font.</returns>
        </member>
        <member name="T:OpenNETCF.Drawing.GDIPlus.LOGFONT">
            <summary>
            This structure defines the attributes of a font.
            </summary>
        </member>
        <member name="T:OpenNETCF.Drawing.GraphicsEx">
            <summary>
            Encapsulates a GDI+ drawing surface.
            </summary>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.FromHdc(System.IntPtr)">
            <summary>
            Creates a new <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> object from the specified native graphics handle.  
            </summary>
            <param name="nativeGraphics">native graphics handle.</param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.FromHwnd(System.IntPtr)">
            <summary>
            Creates a new <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> object from the specified handle to a window.  
            </summary>
            <param name="hwnd">Handle to a window.</param>
            <returns>This method returns a new <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> object for the specified window handle.  </returns>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.FromControl(System.Windows.Forms.Control)">
            <summary>
            Creates a new <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> object from the specified <see cref="T:System.Windows.Forms.Control"/> object.  
            </summary>
            <param name="ctl"><see cref="T:System.Windows.Forms.Control"/> object</param>
            <returns>This method returns a new OpenNETCF.Drawing.GraphicsEx object for the specified specified Control object.</returns>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.CompatibleGraphics(System.Windows.Forms.Control)">
            <summary>
            Creates a new copy of <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> object from the specified Control object.  
            </summary>
            <param name="ctl"><see cref="T:System.Windows.Forms.Control"/> object.</param>
            <returns>This method returns a new <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> object for the specified specified Control object.</returns>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.CompatibleGraphics">
            <summary>
            Creates a new copy of <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> object from the existing <see cref="T:OpenNETCF.Drawing.GraphicsEx"/> objec.
            </summary>
            <returns></returns>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.CopyGraphics(System.Windows.Forms.Control,System.Drawing.Rectangle)">
            <summary>
            Copies the graphics.
            </summary>
            <param name="ctl"></param>
            <param name="rc"></param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.CopyGraphics(OpenNETCF.Drawing.GraphicsEx,System.Drawing.Rectangle)">
            <summary>
            Copies the graphics.
            </summary>
            <param name="gx"></param>
            <param name="rc"></param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.CopyGraphics(System.Windows.Forms.Control,System.Drawing.Rectangle,System.Drawing.Color)">
            <summary>
            Copies graphics from <see cref="T:System.Windows.Forms.Control"/> with transparent color.
            </summary>
            <param name="ctl">Control to copy graphics from</param>
            <param name="rc">Rectangle to copy.</param>
            <param name="transpColor">Transaprent color.</param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.DrawRectangle(OpenNETCF.Drawing.PenEx,System.Drawing.Rectangle)">
            <summary>
            Draws a rectangle specified by a <see cref="T:System.Drawing.Rectangle"/> structure. 
            </summary>
            <param name="pen">A <see cref="T:OpenNETCF.Drawing.PenEx"/> object that determines the color, width, and style of the rectangle. </param>
            <param name="rc">A <see cref="T:System.Drawing.Rectangle"/> structure that represents the rectangle to draw. </param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.DrawRectangle(OpenNETCF.Drawing.PenEx,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws a rectangle.
            </summary>
            <param name="pen">A <see cref="T:OpenNETCF.Drawing.PenEx"/> object that determines the color, width, and style of the rectangle. </param>
            <param name="x">x: x-coordinate of the upper-left corner of the rectangle to draw. </param>
            <param name="y"> y: y-coordinate of the upper-left corner of the rectangle to draw.  </param>
            <param name="cx">width: width of the rectangle to draw. </param>
            <param name="cy">height: Height of the rectangle to draw. </param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.MeasureString(System.String,OpenNETCF.Drawing.FontEx,System.Int32)">
            <summary>
            Measures the specified string when drawn with the specified <see cref="T:OpenNETCF.Drawing.FontEx"/> object.  
            </summary>
            <param name="text">String to measure.</param>
            <param name="font"><see cref="T:OpenNETCF.Drawing.FontEx"/> object that defines the text format of the string.</param>
            <param name="width">Width to fit the string.</param>
            <returns></returns>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.MeasureString(System.String,OpenNETCF.Drawing.FontEx)">
            <summary>
            Measures the specified string when drawn with the specified <see cref="T:OpenNETCF.Drawing.FontEx"/> object.  
            </summary>
            <param name="text"><see cref="T:System.String"/> to measure.</param>
            <param name="font"><see cref="T:OpenNETCF.Drawing.FontEx"/> object that defines the text format of the string.</param>
            <returns></returns>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.FillRectangle(System.Drawing.Color,System.Drawing.Rectangle)">
            <summary>
            Fills the interior of a rectangle specified by a <see cref="T:System.Drawing.Rectangle"/> structure.  
            </summary>
            <param name="color">The <see cref="T:System.Drawing.Color"/> to fill.</param>
            <param name="rc"><see cref="T:System.Drawing.Rectangle"/> structure that represents the rectangle to fill. </param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.DrawString(System.String,OpenNETCF.Drawing.FontEx,System.Drawing.Color,System.Drawing.Rectangle)">
            <summary>
            Draws the specified text string at the specified location with the specified <see cref="T:System.Drawing.Color"/> and <see cref="T:OpenNETCF.Drawing.FontEx"/> objects.
            </summary>
            <param name="text">String to draw</param>
            <param name="font"><see cref="T:OpenNETCF.Drawing.FontEx"/> object that defines the text format of the string</param>
            <param name="textColor">The <see cref="T:System.Drawing.Color"/> of text draw.</param>
            <param name="rc">Rectangle structure that specifies the location of the drawn text</param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.DrawRoundRectangle(OpenNETCF.Drawing.PenEx,System.Drawing.Rectangle,System.Drawing.Size)">
            <summary>
            Draws a rectangle with rounded corners.
            </summary>
            <param name="pen">A <see cref="T:OpenNETCF.Drawing.PenEx"/> object that determines the color, width, and style of the rectangle</param>
            <param name="rc">A <see cref="T:System.Drawing.Rectangle"/> structure that represents the rectangle to draw.</param>
            <param name="size">A <see cref="T:System.Drawing.Size"/> structre that defines the corner radius.</param>
        </member>
        <member name="M:OpenNETCF.Drawing.GraphicsEx.DrawEllipse(OpenNETCF.Drawing.PenEx,System.Drawing.Rectangle)">

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -