ShapeElement.ZOrder – vlastnost
Určuje pořadí, ve kterém se zobrazí tento obrazec vzhledem k obrazcům v diagramu.Obvykle nastavte pořadí podřízené obrazce.
Obor názvů: Microsoft.VisualStudio.Modeling.Diagrams
Sestavení: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (v Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)
Syntaxe
'Deklarace
Public Overridable Property ZOrder As Double
public virtual double ZOrder { get; set; }
Hodnota vlastnosti
Typ: System.Double
Poznámky
Můžete se doporučuje, aby hodnotu přímo, protože diagramu nastaví jako součást procesu Malování ZOrder všech obrazců.Místo toho chcete-li změnit pořadí zobrazení obrazců znovu uspořádat obrazce v NestedChildShapesnebo RelativeChildShapesa potom použijte volání shape.Diagram.NeedsRenumber = true.Tím zajistíte, že obnoví diagramu ZOrders.Viz následující příklad.
Příklady
/// <summary>
/// Command to send current shapes to the back.
/// </summary>
private void OnMenuSendShapesToBackCommand(object sender, EventArgs e)
{
MenuCommand command = sender as MenuCommand;
Store store = this.CurrentDocData.Store;
foreach (object selectedItem in this.CurrentSelection)
{
ShapeElement shape = selectedItem as ShapeElement;
if (shape == null || shape.ParentShape == null) continue;
if (shape.IsNestedChild)
{
using (Transaction t = store.TransactionManager.BeginTransaction("sendToBack"))
{
// Make the current shape the first in the list.
shape.ParentShape.NestedChildShapes.Move(shape, 0);
// Update the ZOrder of the shapes to reflect the change.
shape.Diagram.NeedsRenumber = true;
// Make sure the shape is redrawn:
shape.Invalidate();
t.Commit();
}
}
Chcete-li se ujistit, že obrazec se vždy zobrazí v horní části diagramu, můžete tuto vlastnost přepsat takto.
/// <summary>
/// Gets the relative Z-Order for this ShapeElement.
/// Make sure that my shape stays above all other diagram elements.
/// Add a million to the Z-Order that we are given.
/// </summary>
public override double ZOrder
{
get
{
return base.ZOrder + 1e6;
}
// leave set{ } as inherited
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.