27 references to ResizeMode
PresentationFramework (16)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7044bamlMember.TypeConverterType = typeof(System.Windows.ResizeMode);
src\Framework\System\Windows\Window.cs (15)
1561DependencyProperty.Register("ResizeMode", typeof(ResizeMode), typeof(Window), 1562new FrameworkPropertyMetadata(ResizeMode.CanResize, 1573public ResizeMode ResizeMode 1583return ((ResizeMode) GetValue(ResizeModeProperty)); 4170case ResizeMode.NoResize: 4172case ResizeMode.CanMinimize: 4175case ResizeMode.CanResize: 4176case ResizeMode.CanResizeWithGrip: 5148if ((_resizeGripControl == null) || (ResizeMode != ResizeMode.CanResizeWithGrip)) 6540return IsValidResizeMode((ResizeMode)value); 7328private static bool IsValidResizeMode(ResizeMode value) 7330return value == ResizeMode.NoResize 7331|| value == ResizeMode.CanMinimize 7332|| value == ResizeMode.CanResize 7333|| value == ResizeMode.CanResizeWithGrip;
System.Activities.Core.Presentation (5)
System\Activities\Core\Presentation\FlowSwitchCaseEditorDialog.cs (1)
43this.WindowResizeMode = ResizeMode.NoResize;
System\Activities\Presentation\TypeCollectionPropertyEditor.cs (1)
92this.WindowResizeMode = ResizeMode.CanResize;
System\ServiceModel\Activities\Presentation\CorrelatesOnValueEditor.cs (1)
65this.WindowResizeMode = ResizeMode.CanResize;
System\ServiceModel\Activities\Presentation\CorrelationInitializerValueEditor.cs (1)
68this.WindowResizeMode = ResizeMode.CanResize;
System\ServiceModel\Activities\Presentation\InitializeCorrelationDesigner.xaml.cs (1)
124this.WindowResizeMode = ResizeMode.CanResize;
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\ErrorReporting.cs (1)
145this.WindowResizeMode = ResizeMode.NoResize;
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (1)
56this.WindowResizeMode = ResizeMode.CanResize;
System.Activities.Presentation\System\Activities\Presentation\WorkflowElementDialog.cs (4)
34typeof(ResizeMode), 36new UIPropertyMetadata(ResizeMode.CanResize)); 72public ResizeMode WindowResizeMode 74get { return (ResizeMode)GetValue(WindowResizeModeProperty); }