Could you hire me? Contact me if you like what I’ve done in this article and think I can create value for your company with my skills.

June 20, 2011 / by Zsolt Soczó

Alapban egy Dependency property nem kétirányú bindingos

Meg kell adni a regisztrációjakor explicit, ha azt akarjuk, az legyen.

public static readonly DependencyProperty MyPropertyProperty =
DependencyProperty.Register(
“MyProperty”,
typeof(int),
typeof(Window1),
new FrameworkPropertyMetadata(0, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault));

1 órámat ismét elvittek. :)

Could you hire me? Contact me if you like what I’ve done in this article and think I can create value for your company with my skills.

LEAVE A COMMENT

3 COMMENTS

  • st4rlight June 20, 2011

    Typo-s a kód, az utolsó paraméter helyesen:

    new FrameworkPropertyMetadata(0, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault)

  • Szindbad June 21, 2011

    Ez a DependencyProperty az egyik legnagyobb rusnyaság a .NET-ben…

  • kaz July 12, 2011

    Nem értek egyet veled. Bár a leírás tényleg rusnya, de az általa/segítségével nyújtott dolgok azonban nagyon jók. Pl: attached property
    Mondjuk azt nem értem, hogy egy ennyire alap dolgot miért nem lehet nyelvi szinten is megtámogatni (ide tartozna még a INPC is).

    Attila