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

本文介绍如何新建Windows控件库并使用UtilityLibrary.dll实现OutlookBar控件的自定义设置,包括添加多个OutlookBarBand组件及配置其显示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值