vote up 2 vote down star

How would one implement INotifyPropertyChanged for use in an F# type? Thanks!

flag

50% accept rate

1 Answer

vote up 1 vote down check

It's basically the same as in any other language:

open System.ComponentModel
type MyType() =
  let ev = new Event<_,_>()
  let mutable str = ""
  member x.StringProp
    with get() = str
     and set(str') =
       str <- str'
       ev.Trigger(x, PropertyChangedEventArgs("StringProp"))
  interface INotifyPropertyChanged with
    [<CLIEvent>]
    member x.PropertyChanged = ev.Publish
link|flag
That is not "basically the same" as other languages :P – Cameron MacFarland Nov 8 at 23:10
Thanks, What exactly is the [<CLIEvent>] attribute do? I can't seem to find any the documentation on it. – RodYan Nov 8 at 23:17
2  
@RodYan - it affects the compiled form that the event takes; for interop with other .NET languages (and to implement interfaces exposing .NET events), you'll need to apply it to an IEvent value. This causes add_ and remove_ methods to be generated, as opposed to actually exposing a property of type IEvent<_,_>, as described at msdn.microsoft.com/en-us/library/…. – kvb Nov 8 at 23:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.