C#中OutlookBar的使用以及在项目中的引用

来源:互联网 发布:c语言应用范围 编辑:程序博客网 时间:2024/05/22 06:00

新建“Windows控件库”将代码如下:(添加引用UtilityLibrary.dll),项目---右键--生成---自此生成.dll文件

再后在你所建的项目中,右击工具箱---添加新项----浏览--打开上面生成的,dll文件即可

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.Reflection;
using System.Resources;
using System.Diagnostics;
using System.Xml;
using UtilityLibrary.WinControls;
using UtilityLibrary.CommandBars;
using UtilityLibrary.Menus;
using UtilityLibrary.General;
namespace WindowsControlLibrary1
{
    public partial class UserControl1 : UserControl
    {
        OutlookBar outlookBar1 = null;
        public UserControl1()
        {
            InitializeComponent();
            InitializeOutlookBar();
        }
        void InitializeOutlookBar()
        {  //可以根据自己的要求添加
            outlookBar1 = new OutlookBar();

            OutlookBarBand outlookMapsearchBand = new OutlookBarBand("OutlookBarC1");
            outlookBar1.Bands.Add(outlookMapsearchBand);

            OutlookBarBand outlookMapcontrolBand = new OutlookBarBand("OutlookBarC2");
            outlookBar1.Bands.Add(outlookMapcontrolBand);

            OutlookBarBand outlookMapinstanceBand = new OutlookBarBand("OutlookBarC3");
            outlookBar1.Bands.Add(outlookMapinstanceBand);

            outlookBar1.Dock = DockStyle.Fill;
            this.Controls.AddRange(new Control[] { outlookBar1 });
        }
    }
}