Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Documents / FixedSOMTableCell.cs / 1 / FixedSOMTableCell.cs
/*++ File: FixedSOMTableCell.cs Copyright (C) 2005 Microsoft Corporation. All rights reserved. Description: This class reprsents a table cell on the page. Objects of this class would contain several FixedBlocks, Images etc. that fit within the cell boundaries History: 05/17/2005: eleese - Created --*/ namespace System.Windows.Documents { using System.Windows.Shapes; using System.Windows.Media; using System.Diagnostics; using System.Windows; using System.Windows.Controls; internal sealed class FixedSOMTableCell : FixedSOMContainer { //-------------------------------------------------------------------- // // Constructors // //--------------------------------------------------------------------- #region Constructors public FixedSOMTableCell(double left, double top, double right, double bottom) { _boundingRect = new Rect(new Point(left, top), new Point(right, bottom)); _containsTable = false; _columnSpan = 1; } #endregion Constructors //------------------------------------------------------------------- // // Public Methods // //--------------------------------------------------------------------- #region Public Methods #if DEBUG public override void Render(DrawingContext dc, string label, DrawDebugVisual debugVisual) { Pen pen = new Pen(Brushes.Red, 2); Rect rect = _boundingRect; dc.DrawRectangle(null, pen , rect); /* for (int i = 0; i < _semanticBoxes.Count; i++) { _semanticBoxes[i].Render(dc, null,debugVisual); } */ } #endif public void AddContainer(FixedSOMContainer container) { //Check nested tables first if (!(_containsTable && _AddToInnerTable(container))) { base.Add(container); } if (container is FixedSOMTable) { _containsTable = true; } } public override void SetRTFProperties(FixedElement element) { element.SetValue(Block.BorderThicknessProperty, new Thickness(1)); element.SetValue(Block.BorderBrushProperty, Brushes.Black); element.SetValue(TableCell.ColumnSpanProperty, _columnSpan); } #endregion Public Methods #region Private Methods private bool _AddToInnerTable(FixedSOMContainer container) { foreach (FixedSOMSemanticBox box in _semanticBoxes) { FixedSOMTable table = box as FixedSOMTable; if (table != null && table.AddContainer(container)) { return true; } } return false; } #endregion Private Methods #region Internal Properties internal override FixedElement.ElementType[] ElementTypes { get { return new FixedElement.ElementType[1] { FixedElement.ElementType.TableCell }; } } internal bool IsEmpty { get { foreach (FixedSOMContainer container in this.SemanticBoxes) { FixedSOMTable table = container as FixedSOMTable; if (table != null && !table.IsEmpty) { return false; } FixedSOMFixedBlock block = container as FixedSOMFixedBlock; if (block != null && !block.IsWhiteSpace) { return false; } } return true; } } internal int ColumnSpan { get { return _columnSpan; } set { _columnSpan = value; } } #endregion Internal Properties //-------------------------------------------------------------------- // // Private Fields // //--------------------------------------------------------------------- #region Private Fields private bool _containsTable; private int _columnSpan; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /*++ File: FixedSOMTableCell.cs Copyright (C) 2005 Microsoft Corporation. All rights reserved. Description: This class reprsents a table cell on the page. Objects of this class would contain several FixedBlocks, Images etc. that fit within the cell boundaries History: 05/17/2005: eleese - Created --*/ namespace System.Windows.Documents { using System.Windows.Shapes; using System.Windows.Media; using System.Diagnostics; using System.Windows; using System.Windows.Controls; internal sealed class FixedSOMTableCell : FixedSOMContainer { //-------------------------------------------------------------------- // // Constructors // //--------------------------------------------------------------------- #region Constructors public FixedSOMTableCell(double left, double top, double right, double bottom) { _boundingRect = new Rect(new Point(left, top), new Point(right, bottom)); _containsTable = false; _columnSpan = 1; } #endregion Constructors //------------------------------------------------------------------- // // Public Methods // //--------------------------------------------------------------------- #region Public Methods #if DEBUG public override void Render(DrawingContext dc, string label, DrawDebugVisual debugVisual) { Pen pen = new Pen(Brushes.Red, 2); Rect rect = _boundingRect; dc.DrawRectangle(null, pen , rect); /* for (int i = 0; i < _semanticBoxes.Count; i++) { _semanticBoxes[i].Render(dc, null,debugVisual); } */ } #endif public void AddContainer(FixedSOMContainer container) { //Check nested tables first if (!(_containsTable && _AddToInnerTable(container))) { base.Add(container); } if (container is FixedSOMTable) { _containsTable = true; } } public override void SetRTFProperties(FixedElement element) { element.SetValue(Block.BorderThicknessProperty, new Thickness(1)); element.SetValue(Block.BorderBrushProperty, Brushes.Black); element.SetValue(TableCell.ColumnSpanProperty, _columnSpan); } #endregion Public Methods #region Private Methods private bool _AddToInnerTable(FixedSOMContainer container) { foreach (FixedSOMSemanticBox box in _semanticBoxes) { FixedSOMTable table = box as FixedSOMTable; if (table != null && table.AddContainer(container)) { return true; } } return false; } #endregion Private Methods #region Internal Properties internal override FixedElement.ElementType[] ElementTypes { get { return new FixedElement.ElementType[1] { FixedElement.ElementType.TableCell }; } } internal bool IsEmpty { get { foreach (FixedSOMContainer container in this.SemanticBoxes) { FixedSOMTable table = container as FixedSOMTable; if (table != null && !table.IsEmpty) { return false; } FixedSOMFixedBlock block = container as FixedSOMFixedBlock; if (block != null && !block.IsWhiteSpace) { return false; } } return true; } } internal int ColumnSpan { get { return _columnSpan; } set { _columnSpan = value; } } #endregion Internal Properties //-------------------------------------------------------------------- // // Private Fields // //--------------------------------------------------------------------- #region Private Fields private bool _containsTable; private int _columnSpan; #endregion Private Fields } } // 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
- AsymmetricAlgorithm.cs
- ResourceExpressionBuilder.cs
- PathNode.cs
- DBDataPermissionAttribute.cs
- SystemIcmpV4Statistics.cs
- ReaderWriterLock.cs
- IisTraceWebEventProvider.cs
- ReferenceSchema.cs
- DrawingContextDrawingContextWalker.cs
- IntegrationExceptionEventArgs.cs
- Delay.cs
- CodeTypeConstructor.cs
- TextCompositionEventArgs.cs
- ComboBox.cs
- StrokeCollection2.cs
- XMLDiffLoader.cs
- VBCodeProvider.cs
- XmlException.cs
- InputBuffer.cs
- LayoutEditorPart.cs
- DataSourceSelectArguments.cs
- UInt64Storage.cs
- IIS7UserPrincipal.cs
- TypeSystemHelpers.cs
- InvariantComparer.cs
- X509ChainElement.cs
- DecimalKeyFrameCollection.cs
- DataBoundControl.cs
- RegexCapture.cs
- Win32NamedPipes.cs
- CryptoKeySecurity.cs
- DynamicActionMessageFilter.cs
- TimerEventSubscription.cs
- HttpRuntime.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- DataTableMappingCollection.cs
- TemplateXamlTreeBuilder.cs
- IProvider.cs
- MemoryRecordBuffer.cs
- HttpPostedFileWrapper.cs
- DragCompletedEventArgs.cs
- MetadataItemEmitter.cs
- XDRSchema.cs
- ChineseLunisolarCalendar.cs
- EmptyEnumerable.cs
- SponsorHelper.cs
- StringOutput.cs
- ReliabilityContractAttribute.cs
- UpdateCompiler.cs
- ALinqExpressionVisitor.cs
- AutomationPatternInfo.cs
- TraceLog.cs
- diagnosticsswitches.cs
- KeyConstraint.cs
- MailAddressCollection.cs
- PersonalizationProviderHelper.cs
- PermissionRequestEvidence.cs
- xamlnodes.cs
- HitTestDrawingContextWalker.cs
- PassportAuthentication.cs
- DefaultValueConverter.cs
- EndpointInfoCollection.cs
- TriggerAction.cs
- DesignSurfaceManager.cs
- ThemeableAttribute.cs
- HttpCookie.cs
- DeferredReference.cs
- XmlSchemaInfo.cs
- ButtonBase.cs
- SoapMessage.cs
- WebPartTransformerAttribute.cs
- CollectionViewProxy.cs
- ServiceOperationWrapper.cs
- DeclarativeCatalogPart.cs
- CodeTypeParameterCollection.cs
- WorkflowWebService.cs
- Binding.cs
- DiffuseMaterial.cs
- Parameter.cs
- ToolStripDropDownClosingEventArgs.cs
- XmlILConstructAnalyzer.cs
- PlanCompiler.cs
- ToolStripScrollButton.cs
- XmlCharCheckingWriter.cs
- PenThreadPool.cs
- ChannelDispatcher.cs
- DataServiceSaveChangesEventArgs.cs
- MenuAutomationPeer.cs
- SimpleTextLine.cs
- ArithmeticException.cs
- PackageProperties.cs
- SuppressIldasmAttribute.cs
- ComponentCodeDomSerializer.cs
- RoutedPropertyChangedEventArgs.cs
- BmpBitmapDecoder.cs
- TextRunTypographyProperties.cs
- CngProperty.cs
- ApplicationSettingsBase.cs
- Publisher.cs
- ScrollableControl.cs