📄 opennetcf.drawing.xml
字号:
<?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.CopyPixelOperation">
<summary>
Determines how the source color in a copy pixel operation is combined with the destination color to result in a final color.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.Blackness">
<summary>
The destination area is filled by using the color associated with index 0 in the physical palette. (This color is black for the default physical palette.)
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.CaptureBlt">
<summary>
Windows that are layered on top of your window are included in the resulting image. By default, the image contains only your window. Note that this generally cannot be used for printing device contexts.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.DestinationInvert">
<summary>
The destination area is inverted.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.MergeCopy">
<summary>
The colors of the source area are merged with the colors of the selected brush of the destination device context using the Boolean AND operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.MergePaint">
<summary>
The colors of the inverted source area are merged with the colors of the destination area by using the Boolean OR operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.NoMirrorBitmap">
<summary>
The bitmap is not mirrored.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.NotSourceCopy">
<summary>
The inverted source area is copied to the destination.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.NotSourceErase">
<summary>
The source and destination colors are combined using the Boolean OR operator, and then resultant color is then inverted.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.PatCopy">
<summary>
The brush currently selected in the destination device context is copied to the destination bitmap.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.PatInvert">
<summary>
The colors of the brush currently selected in the destination device context are combined with the colors of the destination are using the Boolean XOR operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.PatPaint">
<summary>
The colors of the brush currently selected in the destination device context are combined with the colors of the inverted source area using the Boolean OR operator. The result of this operation is combined with the colors of the destination area using the Boolean OR operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.SourceAnd">
<summary>
The colors of the source and destination areas are combined using the Boolean AND operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.SourceCopy">
<summary>
The source area is copied directly to the destination area.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.SourceErase">
<summary>
The inverted colors of the destination area are combined with the colors of the source area using the Boolean AND operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.SourceInvert">
<summary>
The colors of the source and destination areas are combined using the Boolean XOR operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.SourcePaint">
<summary>
The colors of the source and destination areas are combined using the Boolean OR operator.
</summary>
</member>
<member name="F:OpenNETCF.Drawing.CopyPixelOperation.Whiteness">
<summary>
The destination area is filled by using the color associated with index 1 in the physical palette. (This color is white for the default physical palette.)
</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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -