using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;namespace WindowsControlLibrary2
{
    public partial class UserControl1 : UserControl
    {
        public UserControl1()
        {
            InitializeComponent();
        }        private void button1_Click(object sender, EventArgs e)
        {
            label1.Text = "天下足球";
        }
    }
}我在解决方案里添加了一个新项目(控件库),请问同一解决方案里的项目如何引用,我在web网站项目添加引用,怎么没有对应的DLL文件添加到BIN文件夹下呢?