search
HomeBackend DevelopmentC#.Net TutorialC# development winform (common control)

1. Client design ideas

1. Straighten out the design ideas and architecture framework

2. Design the interface

3. Write background code

4. Database access

2. Public controls

1. Button:

⑴ Enabled: Determine whether to enable the control

⑵ Visible: Determine whether the control is courseware;

2. CheckBox (multi-option), CheckListBox - (multi-option list)

3. ComboBox (displays an editable text box and can pull down to select a value):

①. Fill in the data

You can put the content to be filled in into the Items collection in the background

private void button1_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < 8; i++)
            {
                comboBox1.Items.Add(i);
            }
        }

②. How to get the selected data (SelectedItem)

MessageBox.Show(comboBox1.SelectedItem.ToString());

⑴ DropDownStyle: Only selection allowed;

⑵ SelectedIndex: Default selected item

Add in the constructor: comboBox1.SelectedIndex = 0;

4, dateTimePicker (allows the user to select a date and time and displays the date and time in the specified format):

Get Value:

MessageBox.Show(dateTimePicker1.Text); //中文日期
MessageBox.Show(dateTimePicker1.Value.ToString());// DateTime类型

Assignment:

DateTime dt=ConvertToDateTime(“2000-1-1”);
dateTimePicker1.Value=dt;

5. Label (provides runtime information and explanatory text for the control)

LinkLabel (displays the hyperlink function) Label control)

private void linkLabel1_Click(object sender, EventArgs e)
        {
            Process.Start("Chrome", "http://www.sina.com.cn");
}

6. ListBox (displays a list from which the user can select items)

SelectionMode: None does not allow selection One can only select one MultiExtended continuous selection MultiSimple multi-select, and does not require continuous selection Selection;

How to get all the contents of multi-selection in the background:

Use the SelectedItems collection to traverse them

private void button3_Click(object sender, EventArgs e)
        {            string a = "";            foreach(object o in listBox1.SelectedItems)
            {
                a += o.ToString();
            }

7. ListView (with one of five different views) A collection of display items)

8. MaskedTextBox (use mask to distinguish correct and incorrect user input):

Mask: Set the string that controls the input allowed by this control

9. MonthCalendar (calendar):

MaxSelectionCount When selecting a date, how many days can be selected at most

Background code: SelectionStart SelectionEnd

MessageBox.Show(monthCalendar1.SelectionStart.ToString() + "-" + monthCalendar1.SelectionEnd.ToString());

10. NotifyIcon (tray Program):

⑴ Visible: whether it is visible;

⑵ Icon: small icon;

⑶ Text: display name;

11, NumericUpDown (can Click the button on the control to increase or decrease the selection box of a certain value)

⑴ increment: The value increased or decreased each time the button is clicked;

⑵ Maximum: the maximum value;

⑶ Minimum: the minimum value; BACKGROUNDIMAGELAYOUT layout uses

# 13, Progressbar : Minimum value;

⑷ style – marquee: Do not display progress, only display when working

⑸ marquee...speed: The speed of calculation when the progress bar does not display progress

14. RichTextBox (large text box):

The escape character text-\r\n can be used in the background

15. TextBox (text box):

⑴ Multiline: Multiline editing

⑵ ScrollBars: Scroll bar display

⑶TabIndex: Tab key sequence index, starting from zero;

⑷TabStop: tab focus shift when fasle Do not enter

16. ToolTip (comment):

⑴ ToolTipTitle: Comment content

As long as you drag in this control, there will be one more attribute in the miscellaneous items of all controls, that is Introduction used to set this control

⑵InitialDelay: How many seconds to hover to display comments;

⑶ ReshowDelay: Change how long it takes for the control to convert comments

17, TreeView ( Tree installation list)

18. WebBrowser (browser creation)

Url (property) - Uri (object

Uri u = new Uri(textBox1.Text);
webBrowser1.Url = u;

The above is the content of winform (common control) developed by C#. For more related content, please Follow the PHP Chinese website (www.php.cn)!




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
Mastering C# .NET Design Patterns: From Singleton to Dependency InjectionMastering C# .NET Design Patterns: From Singleton to Dependency InjectionMay 09, 2025 am 12:15 AM

Design patterns in C#.NET include Singleton patterns and dependency injection. 1.Singleton mode ensures that there is only one instance of the class, which is suitable for scenarios where global access points are required, but attention should be paid to thread safety and abuse issues. 2. Dependency injection improves code flexibility and testability by injecting dependencies. It is often used for constructor injection, but it is necessary to avoid excessive use to increase complexity.

C# .NET in the Modern World: Applications and IndustriesC# .NET in the Modern World: Applications and IndustriesMay 08, 2025 am 12:08 AM

C#.NET is widely used in the modern world in the fields of game development, financial services, the Internet of Things and cloud computing. 1) In game development, use C# to program through the Unity engine. 2) In the field of financial services, C#.NET is used to develop high-performance trading systems and data analysis tools. 3) In terms of IoT and cloud computing, C#.NET provides support through Azure services to develop device control logic and data processing.

C# .NET Framework vs. .NET Core/5/6: What's the Difference?C# .NET Framework vs. .NET Core/5/6: What's the Difference?May 07, 2025 am 12:06 AM

.NETFrameworkisWindows-centric,while.NETCore/5/6supportscross-platformdevelopment.1).NETFramework,since2002,isidealforWindowsapplicationsbutlimitedincross-platformcapabilities.2).NETCore,from2016,anditsevolutions(.NET5/6)offerbetterperformance,cross-

The Community of C# .NET Developers: Resources and SupportThe Community of C# .NET Developers: Resources and SupportMay 06, 2025 am 12:11 AM

The C#.NET developer community provides rich resources and support, including: 1. Microsoft's official documents, 2. Community forums such as StackOverflow and Reddit, and 3. Open source projects on GitHub. These resources help developers improve their programming skills from basic learning to advanced applications.

The C# .NET Advantage: Features, Benefits, and Use CasesThe C# .NET Advantage: Features, Benefits, and Use CasesMay 05, 2025 am 12:01 AM

The advantages of C#.NET include: 1) Language features, such as asynchronous programming simplifies development; 2) Performance and reliability, improving efficiency through JIT compilation and garbage collection mechanisms; 3) Cross-platform support, .NETCore expands application scenarios; 4) A wide range of practical applications, with outstanding performance from the Web to desktop and game development.

Is C# Always Associated with .NET? Exploring AlternativesIs C# Always Associated with .NET? Exploring AlternativesMay 04, 2025 am 12:06 AM

C# is not always tied to .NET. 1) C# can run in the Mono runtime environment and is suitable for Linux and macOS. 2) In the Unity game engine, C# is used for scripting and does not rely on the .NET framework. 3) C# can also be used for embedded system development, such as .NETMicroFramework.

The .NET Ecosystem: C#'s Role and BeyondThe .NET Ecosystem: C#'s Role and BeyondMay 03, 2025 am 12:04 AM

C# plays a core role in the .NET ecosystem and is the preferred language for developers. 1) C# provides efficient and easy-to-use programming methods, combining the advantages of C, C and Java. 2) Execute through .NET runtime (CLR) to ensure efficient cross-platform operation. 3) C# supports basic to advanced usage, such as LINQ and asynchronous programming. 4) Optimization and best practices include using StringBuilder and asynchronous programming to improve performance and maintainability.

C# as a .NET Language: The Foundation of the EcosystemC# as a .NET Language: The Foundation of the EcosystemMay 02, 2025 am 12:01 AM

C# is a programming language released by Microsoft in 2000, aiming to combine the power of C and the simplicity of Java. 1.C# is a type-safe, object-oriented programming language that supports encapsulation, inheritance and polymorphism. 2. The compilation process of C# converts the code into an intermediate language (IL), and then compiles it into machine code execution in the .NET runtime environment (CLR). 3. The basic usage of C# includes variable declarations, control flows and function definitions, while advanced usages cover asynchronous programming, LINQ and delegates, etc. 4. Common errors include type mismatch and null reference exceptions, which can be debugged through debugger, exception handling and logging. 5. Performance optimization suggestions include the use of LINQ, asynchronous programming, and improving code readability.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

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),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!