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
- EntitySqlQueryCacheKey.cs
- HtmlFormParameterReader.cs
- SqlCommandBuilder.cs
- ColorContextHelper.cs
- InputManager.cs
- ChangePassword.cs
- AbstractDataSvcMapFileLoader.cs
- MoveSizeWinEventHandler.cs
- UnsafeNativeMethodsPenimc.cs
- TypeNameConverter.cs
- BitmapMetadataBlob.cs
- indexingfiltermarshaler.cs
- PointHitTestParameters.cs
- XamlSerializerUtil.cs
- SystemDiagnosticsSection.cs
- SharedTcpTransportManager.cs
- FusionWrap.cs
- OleServicesContext.cs
- CallbackHandler.cs
- VScrollProperties.cs
- ThreadStartException.cs
- DataServiceStreamResponse.cs
- TextElementCollectionHelper.cs
- SystemResourceKey.cs
- GeneralTransformGroup.cs
- SmtpTransport.cs
- SettingsBindableAttribute.cs
- RuntimeConfigLKG.cs
- Highlights.cs
- SingleAnimationBase.cs
- XmlChildNodes.cs
- HTTPNotFoundHandler.cs
- RtfToXamlLexer.cs
- ComponentManagerBroker.cs
- HtmlAnchor.cs
- BooleanAnimationBase.cs
- ConstraintConverter.cs
- WebPartConnectionsEventArgs.cs
- DetailsView.cs
- FigureHelper.cs
- RemotingService.cs
- ThicknessAnimationBase.cs
- StructuredTypeEmitter.cs
- NumberFormatInfo.cs
- GraphicsContext.cs
- ProcessModule.cs
- DataGridRow.cs
- CloudCollection.cs
- EndPoint.cs
- WebControl.cs
- ConfigurationElementProperty.cs
- TypeListConverter.cs
- MessageSecurityOverHttpElement.cs
- CodeIterationStatement.cs
- DockEditor.cs
- EasingQuaternionKeyFrame.cs
- TextTreeTextBlock.cs
- EntityProxyFactory.cs
- WebPartConnectionsCancelVerb.cs
- URLAttribute.cs
- XmlSignificantWhitespace.cs
- Delegate.cs
- BasicCommandTreeVisitor.cs
- listitem.cs
- AssemblyLoader.cs
- DtdParser.cs
- AsymmetricSignatureFormatter.cs
- SR.cs
- WebPartAuthorizationEventArgs.cs
- ListViewGroup.cs
- UnknownWrapper.cs
- ContextMenu.cs
- XmlReader.cs
- SoapSchemaExporter.cs
- DatePicker.cs
- DetailsViewPagerRow.cs
- cookieexception.cs
- httpstaticobjectscollection.cs
- ListComponentEditorPage.cs
- LogSwitch.cs
- AlternateViewCollection.cs
- UserControlAutomationPeer.cs
- WebConfigurationFileMap.cs
- ProvideValueServiceProvider.cs
- NativeRightsManagementAPIsStructures.cs
- SchemaEntity.cs
- StringReader.cs
- SignatureHelper.cs
- BinHexEncoding.cs
- ToolboxComponentsCreatedEventArgs.cs
- DataRelationCollection.cs
- FrameworkContentElement.cs
- SafeRegistryHandle.cs
- ClickablePoint.cs
- ListControlDataBindingHandler.cs
- Exception.cs
- FormDesigner.cs
- PeerNearMe.cs
- ConfigurationElement.cs
- Expression.DebuggerProxy.cs