Adorner.Enabled Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą Adorner , czy parametr jest włączony.

public bool Enabled { get; set; }

Wartość właściwości

true, jeśli parametr Adorner jest włączony; w przeciwnym razie . false

Przykłady

W poniższym przykładzie kodu pokazano, jak włączyć i wyłączyć element Adorner. Aby uzyskać pełną listę kodu, zobacz How to: Extend the Appearance and Behavior of Controls in Design Mode (Instrukcje: rozszerzanie wyglądu i zachowania kontrolek w trybie projektowania).

// The AnchorGlyph objects should mimic the resize glyphs;
// they should only be visible when the control is the 
// primary selection. The adorner is enabled when the 
// control is the primary selection and disabled when 
// it is not.

void selectionService_SelectionChanged(object sender, EventArgs e)
{
    if (object.ReferenceEquals(
        this.selectionService.PrimarySelection,
        this.relatedControl))
    {
        this.ComputeBounds();
        this.anchorAdorner.Enabled = true;
    }
    else
    {
        this.anchorAdorner.Enabled = false;
    }
}

Uwagi

Enabled Jeśli właściwość ma truewartość , BehaviorService klasa wyśle HitTest komunikaty i Paint do klasy Adorner.

Dotyczy

Produkt Wersje
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Zobacz też