我为 Revit (Autodesk) 制作了一个插件,它使用以下方式启动外部表单:System.Windows.Forms;在来自程序集 PresentationCore 的 c# 中。知道我想用 Zendesk Chat (Zopim) 填充这个窗口。不幸的是,我不知道如何在 c# 中使用 REST API。我今天只是研究一下这个话题。
如此详细我想要什么:我希望当表单打开时,程序会加载 Zopim 聊天表单并将其放入我的 c# 表单中。
我已经知道我需要以某种方式获取聊天表单,并且我需要将其解析为我的表单。
问题是:我找不到 zopim 聊天表格。我不知道如何将其转换为我的 UI。
我的表格代码:
[Transaction(TransactionMode.Manual)]
class DoSomething : IExternalCommand
{
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
this.StartForm();
return Result.Succeeded;
}
public void StartForm()
{
//EXECUTE AN EXTERNAL WINDOW
System.Windows.Forms.Form myF = new System.Windows.Forms.Form();
myF.FormBorderStyle = FormBorderStyle.SizableToolWindow;
myF.StartPosition = FormStartPosition.CenterScreen;
myF.Width = 400;
myF.Height = 600;
myF.HelpButton = true;
Button cButton = new Button();
cButton.Text = "Cancel";
myF.CancelButton = cButton;
myF.FormClosing += delegate (object sender, FormClosingEventArgs e)
{
e.Cancel = true;
myF.WindowState = FormWindowState.Minimized;
};
myF.Show();
}
}