Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- QilTargetType.cs
- configsystem.cs
- ActivityCodeDomSerializationManager.cs
- TypeReference.cs
- ColumnClickEvent.cs
- WsdlWriter.cs
- SqlAliasesReferenced.cs
- SkipStoryboardToFill.cs
- Keywords.cs
- WebPartManager.cs
- FragmentQueryProcessor.cs
- CompiledRegexRunner.cs
- DoubleLinkListEnumerator.cs
- TableStyle.cs
- CreateDataSourceDialog.cs
- ComponentCommands.cs
- MenuRendererStandards.cs
- LocalizableResourceBuilder.cs
- SqlParameter.cs
- AssemblyCollection.cs
- DESCryptoServiceProvider.cs
- Visual.cs
- KeyInfo.cs
- JpegBitmapEncoder.cs
- ConfigurationElement.cs
- ThrowHelper.cs
- WinEventWrap.cs
- odbcmetadatacollectionnames.cs
- SurrogateSelector.cs
- MetabaseServerConfig.cs
- StrongNameMembershipCondition.cs
- Vector3DAnimationUsingKeyFrames.cs
- ReliableOutputConnection.cs
- OpCellTreeNode.cs
- LabelTarget.cs
- MimeObjectFactory.cs
- Main.cs
- CodeLabeledStatement.cs
- TemplateControlBuildProvider.cs
- DispatcherHookEventArgs.cs
- PersianCalendar.cs
- SecurityKeyIdentifierClause.cs
- SetStoryboardSpeedRatio.cs
- ControlCollection.cs
- Query.cs
- ErasingStroke.cs
- ImageInfo.cs
- ReadOnlyCollection.cs
- ItemsPanelTemplate.cs
- MetabaseSettings.cs
- RequestResizeEvent.cs
- MessageBox.cs
- CancelRequestedRecord.cs
- ListViewCancelEventArgs.cs
- CustomCategoryAttribute.cs
- TableLayoutCellPaintEventArgs.cs
- XmlSchemaInferenceException.cs
- WizardPanel.cs
- TraceSection.cs
- XsdValidatingReader.cs
- WhitespaceRuleLookup.cs
- PerspectiveCamera.cs
- ProcessHostServerConfig.cs
- Animatable.cs
- SafeCoTaskMem.cs
- MinimizableAttributeTypeConverter.cs
- ProjectionRewriter.cs
- ContentOperations.cs
- ContractUtils.cs
- MD5CryptoServiceProvider.cs
- ImmutableAssemblyCacheEntry.cs
- ParameterToken.cs
- InputQueue.cs
- Timer.cs
- CurrentTimeZone.cs
- ConstructorBuilder.cs
- ImageList.cs
- StreamInfo.cs
- FrameworkElement.cs
- WebPartZoneDesigner.cs
- WebCategoryAttribute.cs
- GlyphElement.cs
- ErrorTolerantObjectWriter.cs
- StreamInfo.cs
- WinCategoryAttribute.cs
- SqlWebEventProvider.cs
- _FixedSizeReader.cs
- RequiredAttributeAttribute.cs
- WebCategoryAttribute.cs
- WebPartCollection.cs
- Code.cs
- ScopedKnownTypes.cs
- ReadOnlyObservableCollection.cs
- TextBox.cs
- TextClipboardData.cs
- StoreItemCollection.cs
- DataPagerCommandEventArgs.cs
- DataGridViewCellLinkedList.cs
- SafeArrayRankMismatchException.cs
- ConstrainedDataObject.cs