OutlookBar的使用_1.在项目中的引用

新建“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 });
        }
    }
}

原文地址:http://blog.csdn.net/sophiasy/article/details/2951008
 
posted @ 2016-12-02 16:52  花影疏帘  阅读(510)  评论(0)    收藏  举报