Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MessageBuilder.cs
- RepeaterItemCollection.cs
- HttpCacheVaryByContentEncodings.cs
- SubstitutionList.cs
- _LocalDataStoreMgr.cs
- RankException.cs
- SmiTypedGetterSetter.cs
- TaskFileService.cs
- DesignerCatalogPartChrome.cs
- MediaSystem.cs
- StatusBarPanelClickEvent.cs
- LinqExpressionNormalizer.cs
- NamespaceInfo.cs
- ResourcePermissionBase.cs
- SBCSCodePageEncoding.cs
- BufferedReceiveManager.cs
- BitmapEffectDrawingContextWalker.cs
- GlyphRun.cs
- Win32Native.cs
- FileChangeNotifier.cs
- MasterPageParser.cs
- AggregateException.cs
- StringSource.cs
- CryptoConfig.cs
- WebBrowserEvent.cs
- BasicCellRelation.cs
- ProvidePropertyAttribute.cs
- DrawingVisual.cs
- MemberDescriptor.cs
- RegionInfo.cs
- DatatypeImplementation.cs
- TypeConverterHelper.cs
- DbConnectionHelper.cs
- AccessKeyManager.cs
- WebMessageBodyStyleHelper.cs
- MobileCapabilities.cs
- iisPickupDirectory.cs
- MobileSysDescriptionAttribute.cs
- WebPartUtil.cs
- XmlNamespaceDeclarationsAttribute.cs
- SuppressedPackageProperties.cs
- HttpWebRequestElement.cs
- CheckBoxRenderer.cs
- Application.cs
- RelatedPropertyManager.cs
- x509utils.cs
- ScriptControlDescriptor.cs
- XappLauncher.cs
- ByteConverter.cs
- SchemaElementDecl.cs
- DispatcherSynchronizationContext.cs
- PageBreakRecord.cs
- ValidationResult.cs
- OrCondition.cs
- XhtmlBasicCalendarAdapter.cs
- PersonalizationProvider.cs
- DependencyObject.cs
- ExecutionScope.cs
- IsolatedStoragePermission.cs
- ASCIIEncoding.cs
- MediaPlayerState.cs
- QueueProcessor.cs
- XmlSignatureManifest.cs
- TileBrush.cs
- MarkupObject.cs
- NullableLongSumAggregationOperator.cs
- RenamedEventArgs.cs
- TreeNodeStyleCollection.cs
- DesignOnlyAttribute.cs
- _SingleItemRequestCache.cs
- ToggleButtonAutomationPeer.cs
- SingleTagSectionHandler.cs
- ValidationHelper.cs
- WebPartDisplayMode.cs
- TypeGeneratedEventArgs.cs
- SecurityKeyEntropyMode.cs
- SafeCoTaskMem.cs
- TabItemWrapperAutomationPeer.cs
- XmlSchemaComplexContentRestriction.cs
- ClosableStream.cs
- _SecureChannel.cs
- ApplicationDirectory.cs
- SortedSetDebugView.cs
- ProxyAttribute.cs
- MailAddress.cs
- ToolStripDropDownClosedEventArgs.cs
- UserInitiatedNavigationPermission.cs
- ReplacementText.cs
- _NetworkingPerfCounters.cs
- FieldAccessException.cs
- CachedRequestParams.cs
- WSSecurityJan2004.cs
- UIElement3D.cs
- SimpleType.cs
- PageHandlerFactory.cs
- EnvelopedPkcs7.cs
- WebPartsSection.cs
- TrackingMemoryStreamFactory.cs
- DataBoundControlParameterTarget.cs
- LinearKeyFrames.cs