Code:
/ FX-1434 / FX-1434 / 1.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
- TabRenderer.cs
- Trace.cs
- SweepDirectionValidation.cs
- AutomationProperty.cs
- PageThemeBuildProvider.cs
- BaseDataBoundControl.cs
- PageContentCollection.cs
- CryptoStream.cs
- WindowsStreamSecurityUpgradeProvider.cs
- DocumentSchemaValidator.cs
- WindowsAuthenticationModule.cs
- AbstractSvcMapFileLoader.cs
- Listbox.cs
- SerialReceived.cs
- DateTimeFormatInfoScanner.cs
- ExtensionDataReader.cs
- BridgeDataRecord.cs
- ConsoleCancelEventArgs.cs
- LightweightEntityWrapper.cs
- JoinElimination.cs
- BindingUtils.cs
- DeflateEmulationStream.cs
- PropertyDescriptorCollection.cs
- CertificateManager.cs
- WebPartCatalogAddVerb.cs
- DrawingAttributesDefaultValueFactory.cs
- ImmutablePropertyDescriptorGridEntry.cs
- LambdaReference.cs
- Attribute.cs
- QilDataSource.cs
- ShutDownListener.cs
- Knowncolors.cs
- Grant.cs
- MD5.cs
- dbdatarecord.cs
- SkinBuilder.cs
- SqlGatherConsumedAliases.cs
- ToolStripSettings.cs
- DateTimeUtil.cs
- GeometryModel3D.cs
- TextRange.cs
- KeyBinding.cs
- PageBuildProvider.cs
- ByteStack.cs
- TriggerActionCollection.cs
- TextBoxBase.cs
- AddInBase.cs
- Rss20FeedFormatter.cs
- AuthenticationModulesSection.cs
- EntityTypeEmitter.cs
- MetadataItemCollectionFactory.cs
- ControlBindingsCollection.cs
- DbProviderFactory.cs
- BorderGapMaskConverter.cs
- DataBoundControlDesigner.cs
- ScriptingRoleServiceSection.cs
- TextFragmentEngine.cs
- MarkupCompiler.cs
- HtmlTextBoxAdapter.cs
- SecurityResources.cs
- BasicSecurityProfileVersion.cs
- EventMappingSettings.cs
- RSATokenProvider.cs
- DbConnectionInternal.cs
- StorageEndPropertyMapping.cs
- RelationshipDetailsCollection.cs
- DataGridViewRowPostPaintEventArgs.cs
- TransactionOptions.cs
- Point3DConverter.cs
- ProcessingInstructionAction.cs
- GridViewItemAutomationPeer.cs
- TextCollapsingProperties.cs
- OpCopier.cs
- AutomationProperty.cs
- DataGridViewAutoSizeModeEventArgs.cs
- FormsAuthenticationCredentials.cs
- SoapAttributes.cs
- ObjectView.cs
- HtmlForm.cs
- ThreadStartException.cs
- EventProviderWriter.cs
- CommonProperties.cs
- LoginViewDesigner.cs
- CallId.cs
- DataGridViewTopRowAccessibleObject.cs
- TextContainerChangedEventArgs.cs
- DbConnectionStringBuilder.cs
- HideDisabledControlAdapter.cs
- HtmlInputControl.cs
- ResourceReferenceKeyNotFoundException.cs
- SessionStateItemCollection.cs
- HtmlTableRowCollection.cs
- NavigationService.cs
- ListBoxChrome.cs
- DataServiceQueryOfT.cs
- Transform.cs
- StringValueSerializer.cs
- StreamBodyWriter.cs
- ReflectionTypeLoadException.cs
- ItemAutomationPeer.cs