gpt4 book ai didi

c# - 如何在 win 表单项目中创建用户控件的 dll?

转载 作者:太空狗 更新时间:2023-10-29 20:07:55 26 4
gpt4 key购买 nike

我在我的项目中创建了这个用户控件。当我编译项目时,我看到了项目 dll。但是,当我编译项目时,我如何才能做到这一点,它还会创建一个用户控件的 dll,以便稍后在其他项目上我能够将这个用户控件 dll 添加到我的工具箱中?

/*----------------------------------------------------------------
* Module Name : ListBoxControl
* Description : Change listBox items color
* Author : Danny
* Date : 30/12/2012
* Revision : 1.00
* --------------------------------------------------------------*/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

/*
* Introduction :
*
* By default the color is red.
* Added a property to change the color.
* Right mouse click on item to change item color.
* Left mouse click on item to change the item color back.
* */

namespace ListBoxControl
{
public partial class ListBoxControl : UserControl
{
Color m_MyListColor;
private List<int> m_itemIndexes = new List<int>();

public ListBoxControl()
{
InitializeComponent();

for (int i = 0; i < 10; i++)
{
listBox1.Items.Add("Test " + i);
}
}

private void listBox1_MouseDown(object sender, MouseEventArgs e)
{
int index = listBox1.IndexFromPoint(e.X, e.Y);
listBox1.SelectedIndex = index;

if (e.Button == System.Windows.Forms.MouseButtons.Right)
{
if (m_itemIndexes.Contains(index))
return;

m_itemIndexes.Add(index);
DrawItem(index);
}
else if (e.Button == MouseButtons.Left)
{
if (!m_itemIndexes.Contains(index))
return;

m_itemIndexes.Remove(index);
DrawItem(index);
}
}
}
}

最佳答案

您需要创建一个类型为 Windows Forms Control Library 的单独项目将您的用户控件添加到其中。它的输出是类型类库。编译后,您可以通过右键单击并选择“选择项目”并浏览到 dll 的位置,将其添加到您的工具箱。

关于c# - 如何在 win 表单项目中创建用户控件的 dll?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14087975/

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