Код: Выделить всё
namespace Autodesk.AutoCAD.Windows
{
public class Window : DisposableWrapper, IWin32Window
{
public virtual System.Windows.Point DeviceIndependentLocation { get; set; }
public virtual System.Windows.Size DeviceIndependentSize { get; set; }
public virtual IntPtr Handle { get; }
public virtual Icon Icon { get; set; }
public virtual Point Location { get; set; }
public virtual Size Size { get; set; }
public virtual string Text { get; set; }
public virtual bool Visible { get; set; }
public virtual FormWindowState WindowState { get; set; }
public void Close();
protected override void DeleteUnmanagedObject();
public static System.Windows.Vector GetDeviceIndependentScale(IntPtr hWnd);
}
}
Как быть в этой ситуации? Выходит, что я мог бы передать IWin32Window, а не Form, но такого конструктора нет.
Сейчас делаю так:
Код: Выделить всё
Document doc = AcadServices.Application.DocumentManager.MdiActiveDocument;
//окно документа, являющееся экземпляром показанного мною выше класса:
Window window = doc.Window;
//пока что делаю так:
ParrentFormByCompositum parrentForm = new ParrentFormByCompositum();
parrentForm.Text = "AutoCAD. Дизайнер отчётов.";
AcadServices.Application.ShowModelessDialog(parrentForm);
StiReport report = new StiReport();
report.Design(parrentForm);
Подскажите пожалуйста, как такое решить? Или может добавите еще один конструктор?