Мы разрабатывали надстройку Outlook с помощью Visual Studio 2008. Тем не менее, я сталкиваюсь с необычным поведением при добавлении командной кнопки в пользовательскую командную строку. Такое поведение отражается, когда мы добавляем кнопку в ответ, отвечаем всем и пересылаем окна. Проблема в том, что заголовок кнопки команды не отображается, хотя при отладке с помощью VS он правильно отображает подпись. Но кнопка отображается без заголовка при просмотре в Outlook (2003).Надстройка Outlook с использованием .NET
У меня есть фрагмент кода, как показано ниже. Любая помощь будет оценена по достоинству.
private void AddButtonInNewInspector(Microsoft.Office.Interop.Outlook.Inspector inspector)
{
try
{
if (inspector.CurrentItem is Microsoft.Office.Interop.Outlook.MailItem)
{
try
{
foreach (CommandBar c in inspector.CommandBars)
{
if (c.Name == "custom")
{
c.Delete();
}
}
}
catch
{
}
finally
{
//Add Custom Command bar and command button.
CommandBar myCommandBar = inspector.CommandBars.Add("custom", MsoBarPosition.msoBarTop, false, true);
myCommandBar.Visible = true;
CommandBarControl myCommandbarButton = myCommandBar.Controls.Add(MsoControlType.msoControlButton, 1, "Add", System.Reflection.Missing.Value, true);
myCommandbarButton.Caption = "Add Email";
myCommandbarButton.Width = 900;
myCommandbarButton.Visible = true;
myCommandbarButton.DescriptionText = "This is Add Email Button";
CommandBarButton btnclickhandler = (CommandBarButton)myCommandbarButton;
btnclickhandler.Click += new Microsoft.Office.Core._CommandBarButtonEvents_ClickEventHandler(this.OnAddEmailButtonClick);
}
}
}
catch (System.Exception ex)
{
MessageBox.Show(ex.Message.ToString(), "AddButtInNewInspector");
}
}