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
- ContractsBCL.cs
- HtmlInputButton.cs
- XamlVector3DCollectionSerializer.cs
- CacheRequest.cs
- dbenumerator.cs
- followingquery.cs
- TransformedBitmap.cs
- CallSiteBinder.cs
- smtpconnection.cs
- X509PeerCertificateElement.cs
- EventWaitHandleSecurity.cs
- ItemsPresenter.cs
- TableChangeProcessor.cs
- DispatcherHookEventArgs.cs
- AuthorizationSection.cs
- FindProgressChangedEventArgs.cs
- MappingModelBuildProvider.cs
- NodeFunctions.cs
- RtfFormatStack.cs
- XmlConvert.cs
- Processor.cs
- RangeBase.cs
- EditingCoordinator.cs
- ChtmlTextWriter.cs
- AnimationClockResource.cs
- Polyline.cs
- ConsumerConnectionPoint.cs
- XmlArrayAttribute.cs
- MinMaxParagraphWidth.cs
- BasicCommandTreeVisitor.cs
- Matrix3DStack.cs
- SmtpCommands.cs
- NetSectionGroup.cs
- SqlFunctionAttribute.cs
- UIPermission.cs
- ServiceHostingEnvironment.cs
- Rectangle.cs
- CornerRadiusConverter.cs
- RangeValidator.cs
- VisualBasic.cs
- HtmlEmptyTagControlBuilder.cs
- WSHttpBinding.cs
- ClipboardProcessor.cs
- FakeModelItemImpl.cs
- WindowsComboBox.cs
- ToolboxCategoryItems.cs
- XmlLoader.cs
- ActiveXSite.cs
- DataSourceUtil.cs
- ImageKeyConverter.cs
- DataGridViewCellStyleConverter.cs
- OleDbPermission.cs
- MessageBox.cs
- ButtonChrome.cs
- XmlCharCheckingReader.cs
- ObjectDisposedException.cs
- ConfigurationPropertyAttribute.cs
- Knowncolors.cs
- MessageSecurityTokenVersion.cs
- NegotiationTokenProvider.cs
- HttpHandlerActionCollection.cs
- XmlJsonWriter.cs
- AnnotationAdorner.cs
- SqlCacheDependencySection.cs
- IconHelper.cs
- TypeSource.cs
- VirtualPathData.cs
- NotFiniteNumberException.cs
- JournalEntryListConverter.cs
- AlternationConverter.cs
- RegexCompilationInfo.cs
- PathFigure.cs
- SortQuery.cs
- InputEventArgs.cs
- SplashScreen.cs
- FactoryRecord.cs
- ValidationErrorCollection.cs
- ExtentKey.cs
- ExtentCqlBlock.cs
- XamlReaderHelper.cs
- TripleDES.cs
- HttpMethodConstraint.cs
- HitTestResult.cs
- ContextProperty.cs
- IgnoreSectionHandler.cs
- HMACSHA256.cs
- SiteMapProvider.cs
- WorkflowInstanceExtensionProvider.cs
- QilXmlReader.cs
- ZipIOModeEnforcingStream.cs
- CollectionBuilder.cs
- HtmlInputReset.cs
- DataSpaceManager.cs
- COM2PropertyDescriptor.cs
- UnsignedPublishLicense.cs
- TemplatingOptionsDialog.cs
- StoryFragments.cs
- ListBox.cs
- PropertyPath.cs
- DeclaredTypeElementCollection.cs