search
C# GDI+ Programming (5)Dec 17, 2016 am 10:09 AM

Call the API function to draw in the non-client area of ​​the window

There is a FromHdc function in the Graphics class of GDI+. This function can create a Graphics object based on the window device context (DC). In vc++, drawing in the window client area and non-client area It's nothing more than different calls to the GetWindowDC and GetDC functions. The former gets the entire window DC, and the latter gets the window client area DC.

Then we can call the GetWindowDC function in C# to get the entire window DC, and then load it through FromHdc, so that we can draw for the entire window.

How to call WINDOWS API in C#, or how to call functions in dynamic link library (DLL).

Similar to VC++, import the dynamic link library first, and then declare the API function, as follows:

[System.Runtime.InteropServices.DllImport("User32.dll")]
private static extern IntPtr GetWindowDC(IntPtr hwnd);

Of course, the above is the simplest, and there are still some details that I haven’t talked about. Let’s just leave it like this for now. Just be able to use it basically. Those details will be explained in detail later.

In C#, we find that the parameter types of API functions are different, such as handles HDC and HWND in VC++. When declaring here, IntPtr was used instead. There is no way to do this, because C# does not have the concept of pointers, and when we checked the HDC and HWND type definitions, we found that they are both pointer types.

So in C#, these "handle" types are replaced by IntPtr, including area handles HRGN, HICON icons, HFONT font handles, etc.

Let’s look at an example, (continuing from the previous chapter)

Public partial class Form1: Form
{
//Import the dynamic link library and declare the function. This function is declared in the Form1 class.
                                                                                                                                                                                                                                                                                     does not do not have the same effect? ​​path = new GraphicsPath();
/ /Load PNG Pictures t Bitmap BMP = New Bitmap ("D: \ Image \ Win.png");
Public form1 () {
initializedComponent (); Area
                                                                                                                                                           Color cor = bmp.GetPixel(x, y); B int argb = cor.toargb ();
Byte [] Bargb = Bitconverter.getBytes (ARGB);
// Pixel color value is not transparent
if (bargb [3]! = 0) {
// This is this this Add the pixel area to the path
                                                                                                                                                                . //Set the window display area and create a region through the path
This.Region = new Region( PATH); i this.paint+= formpaint;
}}
Private void Formpaaint (Object SENDER, PAINTEVENTARGS E) {


OnPaintBackground (E);
// Handle is the window handle, It is an Intptr type
intptr HDC = GetWindowDC (this.Handle); new Rectangle(0, 0, bmp.Width , bmp.Height));
      }
protected override void OnPaintBackground(PaintEventArgs e)
                                                   . this.ClientRectangle);
                                                                                     How about it, the effect is good, but as soon as you drag the window, the original shape is revealed. Have you noticed the shadow under the apple? It is just to achieve this effect that it will cause some problems, or it will be a lot of trouble. It’s just that I didn’t solve it. Moving the window or maximizing the window without completely refreshing the entire window will cause this problem. This problem will be solved later.

Friends who are interested can also solve this problem.

In addition, I use a transparent brush to fill only the client area of ​​the window. If I want to fill the entire window (including the title bar), the method is the same as drawing on the entire window, get the WindowDC, and then

create a Graphics object and draw the window background.

(Digression: In vc++, the client area and non-client area have different redraw messages, WM_PAINT and WM_NCPAINT. Please pay attention to this. When refreshing the non-client area, do not redraw the client area, although it will not What goes wrong, but it affects efficiency is always bad, avoid it if you can)

Non-client area of ​​the self-drawn window (including title bar, maximize, minimize, close buttons)

Rewrite the message processing function WndProc

public partial class Form1 : Form

                                                                                     Form )

                                                                                                                                                                                                         

              MessageBox.Show("You double-clicked the title bar"); 

                                                                                                When you click the title bar, a prompt will be given, and then Then handle it by default.

To check the value corresponding to the message, you can check it in the VC++ compiler. For example, mark WM_LBUTTONDOWN and then right-click and select Go to definition to view it.


m.HWnd stores the window handle. m.LParam and m.WParam are incidental information of the message. You can refer to the explanation of WPARAM and LPARAM parameters in the CreateWindow function.



The workload of self-painting the non-client area is really too much. Here I will only give you a general idea and direction. I will do it again when I have time.

The premise is of course to calculate various data, such as whether the window has borders. If so, obtain the border width and height, and then calculate the rectangular area of ​​the four borders.

Finally, determine whether the window has the maximum and minimum attributes, and then obtain the area for the three buttons.

These data are stored in the SystemInformation class. For example, SystemInformation.CaptionButtonSize stores the size of the title bar button. Once you get the size, you can

determine the area of ​​the button, because these three buttons are all in the upper right corner of the window. Excluding the height and width of the border.

SystemInformation.CaptionHeight stores the height of the title bar, and the height and width of the border are stored in SystemInformation.BorderSize or SystemInformation.Border3DSize, which is determined according to the FormBorderStyle of the window. You can determine whether the window is maximized by MaximizeBox, which is maximized if true.

After getting the above data, it responds to various messages in the non-client area, such as left mouse button messages WM_NCLBUTTONDOWN and WM_NCLBUTTONUP.

The mouse moves the message WM_NCMOUSEMOVE, and then the self-drawing begins.

The Contains function in the Rectangle class can determine whether a point is within a rectangular area.

For more C# GDI+ Programming (5) related articles, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to use char array in C languageHow to use char array in C languageApr 03, 2025 pm 03:24 PM

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().

How to use various symbols in C languageHow to use various symbols in C languageApr 03, 2025 pm 04:48 PM

The usage methods of symbols in C language cover arithmetic, assignment, conditions, logic, bit operators, etc. Arithmetic operators are used for basic mathematical operations, assignment operators are used for assignment and addition, subtraction, multiplication and division assignment, condition operators are used for different operations according to conditions, logical operators are used for logical operations, bit operators are used for bit-level operations, and special constants are used to represent null pointers, end-of-file markers, and non-numeric values.

What is the role of char in C stringsWhat is the role of char in C stringsApr 03, 2025 pm 03:15 PM

In C, the char type is used in strings: 1. Store a single character; 2. Use an array to represent a string and end with a null terminator; 3. Operate through a string operation function; 4. Read or output a string from the keyboard.

How to handle special characters in C languageHow to handle special characters in C languageApr 03, 2025 pm 03:18 PM

In C language, special characters are processed through escape sequences, such as: \n represents line breaks. \t means tab character. Use escape sequences or character constants to represent special characters, such as char c = '\n'. Note that the backslash needs to be escaped twice. Different platforms and compilers may have different escape sequences, please consult the documentation.

Avoid errors caused by default in C switch statementsAvoid errors caused by default in C switch statementsApr 03, 2025 pm 03:45 PM

A strategy to avoid errors caused by default in C switch statements: use enums instead of constants, limiting the value of the case statement to a valid member of the enum. Use fallthrough in the last case statement to let the program continue to execute the following code. For switch statements without fallthrough, always add a default statement for error handling or provide default behavior.

How to convert char in C languageHow to convert char in C languageApr 03, 2025 pm 03:21 PM

In C language, char type conversion can be directly converted to another type by: casting: using casting characters. Automatic type conversion: When one type of data can accommodate another type of value, the compiler automatically converts it.

What is the function of C language sum?What is the function of C language sum?Apr 03, 2025 pm 02:21 PM

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

Advanced C# .NET: Concurrency, Parallelism, and Multithreading ExplainedAdvanced C# .NET: Concurrency, Parallelism, and Multithreading ExplainedApr 03, 2025 am 12:01 AM

C#.NET provides powerful tools for concurrent, parallel and multithreaded programming. 1) Use the Thread class to create and manage threads, 2) The Task class provides more advanced abstraction, using thread pools to improve resource utilization, 3) implement parallel computing through Parallel.ForEach, 4) async/await and Task.WhenAll are used to obtain and process data in parallel, 5) avoid deadlocks, race conditions and thread leakage, 6) use thread pools and asynchronous programming to optimize performance.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!