Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ObjectPersistData.cs
- UrlAuthFailedErrorFormatter.cs
- IntegerValidatorAttribute.cs
- SlotInfo.cs
- PrePostDescendentsWalker.cs
- ViewStateModeByIdAttribute.cs
- ApplicationFileParser.cs
- PackagingUtilities.cs
- SmiConnection.cs
- SrgsToken.cs
- TimeSpanSecondsConverter.cs
- SchemaNamespaceManager.cs
- PartManifestEntry.cs
- TdsRecordBufferSetter.cs
- Int32.cs
- FactoryId.cs
- SrgsDocumentParser.cs
- SystemTcpConnection.cs
- HyperLinkStyle.cs
- DescendentsWalker.cs
- RecipientIdentity.cs
- SqlPersonalizationProvider.cs
- Missing.cs
- TableParagraph.cs
- SymmetricKeyWrap.cs
- StackBuilderSink.cs
- BrowserCapabilitiesCodeGenerator.cs
- GradientStopCollection.cs
- ThemeInfoAttribute.cs
- XmlHelper.cs
- TileModeValidation.cs
- DuplicateWaitObjectException.cs
- SequentialOutput.cs
- ButtonBaseAdapter.cs
- PackUriHelper.cs
- serverconfig.cs
- FixedSOMContainer.cs
- StrokeNodeOperations.cs
- StyleSelector.cs
- Trace.cs
- HttpConfigurationSystem.cs
- DataServiceHost.cs
- CallbackValidatorAttribute.cs
- GeneratedContractType.cs
- RuntimeArgumentHandle.cs
- CodeDirectiveCollection.cs
- MailMessage.cs
- NTAccount.cs
- DataBindingExpressionBuilder.cs
- PlatformCulture.cs
- LayoutManager.cs
- FixedPageStructure.cs
- ScriptRef.cs
- TableHeaderCell.cs
- ThicknessAnimationUsingKeyFrames.cs
- TraceSection.cs
- SystemInformation.cs
- ToolboxControl.cs
- PersianCalendar.cs
- IPAddress.cs
- AsymmetricKeyExchangeDeformatter.cs
- DockPanel.cs
- HtmlTitle.cs
- CodeRemoveEventStatement.cs
- CategoryAttribute.cs
- FixedSOMLineRanges.cs
- PeerContact.cs
- SqlPersonalizationProvider.cs
- BinaryCommonClasses.cs
- MobileFormsAuthentication.cs
- SingleAnimationUsingKeyFrames.cs
- XmlTextReaderImpl.cs
- PtsHelper.cs
- ThousandthOfEmRealPoints.cs
- ComponentEvent.cs
- BamlRecords.cs
- LogSwitch.cs
- LingerOption.cs
- MiniCustomAttributeInfo.cs
- PolyLineSegment.cs
- ChangesetResponse.cs
- SmtpFailedRecipientException.cs
- DependencyObjectValidator.cs
- SourceChangedEventArgs.cs
- BitmapEffectGroup.cs
- EmptyEnumerator.cs
- EntityReference.cs
- EntitySqlQueryCacheKey.cs
- HtmlButton.cs
- Soap12FormatExtensions.cs
- QuotaExceededException.cs
- TextSerializer.cs
- FontNamesConverter.cs
- TreeViewImageIndexConverter.cs
- DataTablePropertyDescriptor.cs
- BlurBitmapEffect.cs
- DBCSCodePageEncoding.cs
- DataBindEngine.cs
- TypeInitializationException.cs
- Int64KeyFrameCollection.cs