W
wglifs
Unregistered / Unconfirmed
GUEST, unregistred user!
//Declaring a BarTender application variable
BarTender.Application btApp;
//Instantiating the BarTender object
btApp = new BarTender.ApplicationClass();
//Setting the BarTender Application Visible
btApp.Visible = true;
//Setting the window state property
btApp.Window.WindowState = BarTender.BtWindowState.btNormal;
//Setting the height property
btApp.Window.Height = 400;
//Setting the width property
btApp.Window.Width = 650;
//Ending the BarTender process
btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges);
将以上转换成Delphi的可编译语句。谢谢。
BarTender.Application btApp;
//Instantiating the BarTender object
btApp = new BarTender.ApplicationClass();
//Setting the BarTender Application Visible
btApp.Visible = true;
//Setting the window state property
btApp.Window.WindowState = BarTender.BtWindowState.btNormal;
//Setting the height property
btApp.Window.Height = 400;
//Setting the width property
btApp.Window.Width = 650;
//Ending the BarTender process
btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges);
将以上转换成Delphi的可编译语句。谢谢。