DependencyPropertyTest.DependencyPropertyTest C# (CSharp) Method

DependencyPropertyTest() static private method

static private DependencyPropertyTest ( )
      static DependencyPropertyTest()
      {
        FirstProperty  = DependencyProperty.Register("FirstProperty", 
                                                      typeof(bool), 
                                                      typeof(DependencyPropertyTest), 
                                                      new PropertyMetadata(false, FirstPropertyChanged));
    
        SecondProperty = DependencyProperty.Register("SecondProperty", 
                                                     typeof(string), 
                                                     typeof(DependencyPropertyTest), 
                                                     new PropertyMetadata(null));
      } // End constructor