ShapeElement.ZOrder – vlastnost
Určuje pořadí, ve kterém se zobrazí tento obrazec ve vztahu k jiným obrazcům na diagramu.Obvykle nastavte pořadí podřízených obrazců.
Obor názvů: Microsoft.VisualStudio.Modeling.Diagrams
Sestavení: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (v Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.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 nastavit hodnotu přímo, protože diagramu nastaví ZOrder všech obrazců v rámci procesu Malování.Místo toho, chcete-li změnit pořadí, ve kterém jsou zobrazeny obrazce, znovu uspořádat obrazce v NestedChildShapesnebo RelativeChildShapesa potom volat shape.Diagram.NeedsRenumber = true.Tím je zajištěno, ž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 zajistit, aby daný tvar 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.