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
- ScriptControl.cs
- CapacityStreamGeometryContext.cs
- TreeNodeBindingCollection.cs
- TargetConverter.cs
- TypeElementCollection.cs
- _NegoState.cs
- NativeObjectSecurity.cs
- DataSourceView.cs
- Label.cs
- StylusPointPropertyId.cs
- FrameworkTextComposition.cs
- SourceFileBuildProvider.cs
- ITextView.cs
- Window.cs
- EventPropertyMap.cs
- DiscoveryReference.cs
- IDispatchConstantAttribute.cs
- Int16Animation.cs
- InkCollectionBehavior.cs
- HwndSourceKeyboardInputSite.cs
- MenuItemBinding.cs
- CqlLexerHelpers.cs
- FontNamesConverter.cs
- ColumnHeader.cs
- AsymmetricKeyExchangeFormatter.cs
- FontFamily.cs
- StandardRuntimeEnumValidator.cs
- WebPartDescription.cs
- InvokeMethodActivityDesigner.cs
- SoapTypeAttribute.cs
- ArrangedElement.cs
- Image.cs
- PropertyKey.cs
- CustomAttributeFormatException.cs
- FacetChecker.cs
- SQLString.cs
- ReturnEventArgs.cs
- XmlAttribute.cs
- XmlWriter.cs
- MsmqReceiveHelper.cs
- Root.cs
- RoleGroupCollection.cs
- RightsManagementInformation.cs
- ReceiveDesigner.xaml.cs
- SByteConverter.cs
- Calendar.cs
- BitmapFrameDecode.cs
- PageAsyncTaskManager.cs
- Parser.cs
- EFDataModelProvider.cs
- XPathNavigatorReader.cs
- OneOfTypeConst.cs
- UnmanagedMemoryAccessor.cs
- HttpDictionary.cs
- AxHostDesigner.cs
- EDesignUtil.cs
- XmlSequenceWriter.cs
- SqlConnectionStringBuilder.cs
- XmlUrlResolver.cs
- Deserializer.cs
- RewritingValidator.cs
- CharEntityEncoderFallback.cs
- FileLoadException.cs
- Effect.cs
- List.cs
- EntityDataSourceChangingEventArgs.cs
- WebPartZoneBase.cs
- CustomAttributeSerializer.cs
- PointConverter.cs
- sapiproxy.cs
- AutoGeneratedFieldProperties.cs
- SystemKeyConverter.cs
- FileDialog.cs
- Mouse.cs
- MeshGeometry3D.cs
- EndEvent.cs
- SerializationHelper.cs
- __TransparentProxy.cs
- HotCommands.cs
- XmlSiteMapProvider.cs
- LineInfo.cs
- StringDictionary.cs
- ListViewDataItem.cs
- PathFigureCollectionConverter.cs
- DataGridViewCellLinkedList.cs
- SettingsBase.cs
- AdCreatedEventArgs.cs
- DrawingDrawingContext.cs
- GcHandle.cs
- SystemUdpStatistics.cs
- Win32.cs
- EdmFunctions.cs
- ClientCultureInfo.cs
- LicenseProviderAttribute.cs
- ProtocolsConfigurationEntry.cs
- MasterPage.cs
- DataBinding.cs
- shaperfactory.cs
- SevenBitStream.cs
- ToolStripArrowRenderEventArgs.cs