Wrapper class for the [!:C1.Phone.PropertyChangedEventArgs<T>] class for case when T is Nullable<(Of <(<'T>)>)>.

Namespace:  C1.Xaml
Assembly:  C1.Xaml (in C1.Xaml.dll)

Syntax

C#
public class NullablePropertyChangedEventArgs<T> : PropertyChangedEventArgs<Nullable<T>>
where T : struct, new()
Visual Basic
Public Class NullablePropertyChangedEventArgs(Of T As {Structure, New}) _
	Inherits PropertyChangedEventArgs(Of Nullable(Of T))

Type Parameters

T
structure

Remarks

This class is required for design-time, as VS 2010 can't work with nested generic attributes directly when adding event handlers in xaml.

Inheritance Hierarchy

System..::..Object
  System..::..EventArgs
    C1.Xaml..::..PropertyChangedEventArgs<(Of <(<'Nullable<(Of <(<'T>)>)>>)>)>
      C1.Xaml..::..NullablePropertyChangedEventArgs<(Of <(<'T>)>)>

See Also