Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutStyle.cs / 1 / TableLayoutStyle.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Drawing; using System.Drawing.Design; using System.Globalization; using System.Windows.Forms.Layout; using System.Reflection; ///[TypeConverterAttribute(typeof(TableLayoutSettings.StyleConverter))] public abstract class TableLayoutStyle { private IArrangedElement _owner; private SizeType _sizeType = SizeType.AutoSize; private float _size; /// [DefaultValue(SizeType.AutoSize)] public SizeType SizeType { get { return _sizeType; } set { if (_sizeType != value) { _sizeType = value; if(Owner != null) { LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.Style); Control owner = Owner as Control; if (owner != null) { owner.Invalidate(); } } } } } internal float Size { get { return _size; } set { if (value < 0) { throw new ArgumentOutOfRangeException("Size", SR.GetString(SR.InvalidLowBoundArgumentEx, "Size", value.ToString(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture))); } if (_size != value) { _size = value; if(Owner != null) { LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.Style); Control owner = Owner as Control; if (owner != null) { owner.Invalidate(); } } } } } private bool ShouldSerializeSize() { return SizeType != SizeType.AutoSize; } internal IArrangedElement Owner { get { return _owner; } set { _owner = value; } } //set the size without doing a layout internal void SetSize(float size) { Debug.Assert(size >= 0); _size = size; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Drawing; using System.Drawing.Design; using System.Globalization; using System.Windows.Forms.Layout; using System.Reflection; ///[TypeConverterAttribute(typeof(TableLayoutSettings.StyleConverter))] public abstract class TableLayoutStyle { private IArrangedElement _owner; private SizeType _sizeType = SizeType.AutoSize; private float _size; /// [DefaultValue(SizeType.AutoSize)] public SizeType SizeType { get { return _sizeType; } set { if (_sizeType != value) { _sizeType = value; if(Owner != null) { LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.Style); Control owner = Owner as Control; if (owner != null) { owner.Invalidate(); } } } } } internal float Size { get { return _size; } set { if (value < 0) { throw new ArgumentOutOfRangeException("Size", SR.GetString(SR.InvalidLowBoundArgumentEx, "Size", value.ToString(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture))); } if (_size != value) { _size = value; if(Owner != null) { LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.Style); Control owner = Owner as Control; if (owner != null) { owner.Invalidate(); } } } } } private bool ShouldSerializeSize() { return SizeType != SizeType.AutoSize; } internal IArrangedElement Owner { get { return _owner; } set { _owner = value; } } //set the size without doing a layout internal void SetSize(float size) { Debug.Assert(size >= 0); _size = size; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RevocationPoint.cs
- TableLayoutRowStyleCollection.cs
- FixedSOMSemanticBox.cs
- ZoneMembershipCondition.cs
- ProtocolViolationException.cs
- DataGridViewColumnCollection.cs
- TextChangedEventArgs.cs
- Track.cs
- DataGridViewElement.cs
- XmlDataImplementation.cs
- Context.cs
- PerformanceCounterPermissionAttribute.cs
- TextBox.cs
- KeyManager.cs
- XmlElementElement.cs
- BaseParaClient.cs
- NoneExcludedImageIndexConverter.cs
- CodeExpressionStatement.cs
- ProgramNode.cs
- DocumentOrderQuery.cs
- ListControl.cs
- TextBox.cs
- SqlDataSourceSelectingEventArgs.cs
- BadImageFormatException.cs
- CommandID.cs
- ProviderCollection.cs
- DesignerActionUIService.cs
- FormsAuthenticationTicket.cs
- ContextMarshalException.cs
- XmlSchemaAppInfo.cs
- documentation.cs
- StorageSetMapping.cs
- DataGridViewTextBoxEditingControl.cs
- KnowledgeBase.cs
- PropertyOrder.cs
- SimpleLine.cs
- Focus.cs
- WindowsFormsHelpers.cs
- UrlPath.cs
- MetadataExporter.cs
- PropertyItem.cs
- PrivilegeNotHeldException.cs
- XmlDocument.cs
- StateDesigner.TransitionInfo.cs
- BufferedGraphics.cs
- Atom10FormatterFactory.cs
- Cursors.cs
- MaterialGroup.cs
- StyleCollectionEditor.cs
- _ConnectStream.cs
- ObjectMemberMapping.cs
- TraceContext.cs
- CodeTypeDelegate.cs
- EditCommandColumn.cs
- ScriptComponentDescriptor.cs
- BulletDecorator.cs
- StrongNameKeyPair.cs
- SafeNativeMethods.cs
- TextClipboardData.cs
- ServiceNameCollection.cs
- SafeRightsManagementEnvironmentHandle.cs
- DateTimeConverter.cs
- HttpCookiesSection.cs
- PageAsyncTask.cs
- VScrollBar.cs
- embossbitmapeffect.cs
- DecimalConverter.cs
- ObjectMaterializedEventArgs.cs
- EnumBuilder.cs
- BitmapSizeOptions.cs
- DateTimeFormatInfoScanner.cs
- StreamWithDictionary.cs
- HorizontalAlignConverter.cs
- ServiceModelConfigurationSection.cs
- SafeFileHandle.cs
- DocumentAutomationPeer.cs
- PointHitTestParameters.cs
- VSWCFServiceContractGenerator.cs
- HttpContext.cs
- PropertyManager.cs
- parserscommon.cs
- ExtenderHelpers.cs
- NamespaceQuery.cs
- PrintingPermissionAttribute.cs
- ExplicitDiscriminatorMap.cs
- DbConnectionFactory.cs
- ArrayTypeMismatchException.cs
- CharEntityEncoderFallback.cs
- NetCodeGroup.cs
- ItemsPresenter.cs
- WebBrowser.cs
- Button.cs
- WebPartCatalogAddVerb.cs
- __ComObject.cs
- ScrollEvent.cs
- QuaternionConverter.cs
- LambdaCompiler.Statements.cs
- UrlAuthFailedErrorFormatter.cs
- DesignerProperties.cs
- CompModSwitches.cs