gpt4 book ai didi

c# - 在 WinForms 应用程序中放置功能代码的位置

转载 作者:太空宇宙 更新时间:2023-11-03 14:36:57 24 4
gpt4 key购买 nike

我是 C# 的新手,我正在使用 VS08,我已经创建了一个表单,但是我应该在哪里放置我的功能代码?

现在我有 2 个文件:
程序.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}

form1.cs - 包含我的表单。

最佳答案

您的代码应包含在构成领域功能的类中。 Program.cs 创建您的表单的一个实例(建议您将 form1 重命名为更具描述性的名称),而您的表单又应该实例化它需要的类。

如果您正在使用数据绑定(bind),请将一个或多个绑定(bind)源添加到您的表单,设置它们的数据源并在表单加载期间进行绑定(bind)。

关于c# - 在 WinForms 应用程序中放置功能代码的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/668680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com