Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutStyle.cs / 1305376 / 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
- XmlSignificantWhitespace.cs
- ZipIOExtraFieldPaddingElement.cs
- ConfigurationValue.cs
- Certificate.cs
- XmlText.cs
- ClassDataContract.cs
- Clock.cs
- PerformanceCounterLib.cs
- Permission.cs
- CustomPopupPlacement.cs
- SqlTriggerAttribute.cs
- TabControlCancelEvent.cs
- PipeException.cs
- SqlConnectionPoolProviderInfo.cs
- MainMenu.cs
- CanonicalFontFamilyReference.cs
- XPathMessageContext.cs
- DbConnectionPoolGroup.cs
- ProfileInfo.cs
- ValidationHelper.cs
- Thumb.cs
- TextEffectCollection.cs
- HwndStylusInputProvider.cs
- RegionData.cs
- GridViewUpdateEventArgs.cs
- QilName.cs
- RtfControlWordInfo.cs
- MailHeaderInfo.cs
- DbgCompiler.cs
- Select.cs
- SecurityDescriptor.cs
- Timer.cs
- SamlAssertionKeyIdentifierClause.cs
- AsyncContentLoadedEventArgs.cs
- EventTrigger.cs
- SingletonInstanceContextProvider.cs
- WaitHandleCannotBeOpenedException.cs
- ValueChangedEventManager.cs
- DataGridSortingEventArgs.cs
- WriteFileContext.cs
- PeerServiceMessageContracts.cs
- BuildResult.cs
- XmlTextWriter.cs
- Variant.cs
- EntityDataReader.cs
- WorkflowElementDialogWindow.xaml.cs
- ProcessExitedException.cs
- SettingsSection.cs
- DataTableReaderListener.cs
- EdmSchemaAttribute.cs
- MouseButton.cs
- HotSpotCollection.cs
- Material.cs
- DesignerInterfaces.cs
- CustomAttributeFormatException.cs
- DecimalAnimationUsingKeyFrames.cs
- FormatException.cs
- TextTreeFixupNode.cs
- WebPartConnectionsEventArgs.cs
- ContainsRowNumberChecker.cs
- TextSchema.cs
- Int64Storage.cs
- CallContext.cs
- ModelProperty.cs
- EventLogEntryCollection.cs
- WizardSideBarListControlItem.cs
- PropertyTab.cs
- RequestTimeoutManager.cs
- XmlSignatureManifest.cs
- CodeVariableDeclarationStatement.cs
- FormsAuthentication.cs
- DocumentPageTextView.cs
- Win32.cs
- ObservableDictionary.cs
- TextRunCache.cs
- SecurityKeyType.cs
- EpmSourcePathSegment.cs
- SystemIcmpV4Statistics.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- DataSourceIDConverter.cs
- WinFormsSecurity.cs
- ValidatorUtils.cs
- EdmValidator.cs
- ConsoleEntryPoint.cs
- UpdateEventArgs.cs
- TextModifier.cs
- CombinedHttpChannel.cs
- SmiContext.cs
- ProcessHostConfigUtils.cs
- MissingMemberException.cs
- LayoutTable.cs
- Environment.cs
- TimelineGroup.cs
- BooleanAnimationUsingKeyFrames.cs
- DbConnectionFactory.cs
- ItemDragEvent.cs
- TypeUsage.cs
- DelegatedStream.cs
- ParameterRetriever.cs
- BigInt.cs