1 write to view
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
1491this.view = designer;
24 references to view
System.Data (24)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (24)
1492this.zoomFitToScreenLabel = (this.view.TryFindResource("zoomFitToScreenLabel") as string) ?? "Fit to screen"; 1554this.view.zoomPicker.LostFocus += (s, e) => 1556string text = this.Convert(this.view.zoomSlider.Value, typeof(string), null, CultureInfo.InvariantCulture) as string; 1559this.view.zoomPicker.Text = string.Empty; 1560this.view.zoomPicker.Text = text; 1580return this.CalculateY(this.view.zoomSlider.Value) / 100.0; 1586return this.view.zoomSlider.Value < this.view.zoomSlider.Maximum; 1591double x = this.view.zoomSlider.Value; 1596this.view.zoomSlider.Value = this.keyboardZoomTicks[i]; 1604double x = this.view.zoomSlider.Value; 1609this.view.zoomSlider.Value = this.keyboardZoomTicks[i]; 1617return this.view.zoomSlider.Value > this.view.zoomSlider.Minimum; 1622double y1 = (this.view.scrollViewer.ViewportWidth / this.view.scrollableContent.ActualWidth) * 100.0; 1623double y2 = (this.view.scrollViewer.ViewportHeight / this.view.scrollableContent.ActualHeight) * 100.0; 1625this.view.zoomSlider.Value = this.CalculateX(y); 1630this.view.zoomSlider.Value = this.CalculateX(100.0); 1665double y1 = (this.view.scrollViewer.ViewportWidth / this.view.scrollableContent.ActualWidth) * 100.0; 1666double y2 = (this.view.scrollViewer.ViewportHeight / this.view.scrollableContent.ActualHeight) * 100.0;