public SubWindow(XPlotVM plot) { InitializeComponent(); // this.Wnd.Title = title; DataContext = plot; }
private XPlotVM CreatePlot() { XPlotVM plot = new XPlotVM(); plot.CreatePlot(Client.GetParameterValue(SelectedParamType.Name, DateFrom, DateTo), SelectedParamType.Name); return plot; }
public XPlotControl(XPlotVM plot) { InitializeComponent(); // this.Wnd.Title = title; DataContext = plot; }