Click here to Skip to main content
15,886,026 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
My custom control is deriving from itemscontrol but it will not work.when use below code works fine.
C#
public new string DisplayMemberPath
       {
         get { return (string)GetValue(DisplayMemberPathProperty); }
          set { SetValue(DisplayMemberPathProperty, value); }
       }

       ///// <summary>
       ///// Using a DependencyProperty as the backing store for SearchItemPath.  This enables animation, styling, binding, etc...
       ///// </summary>
       public static readonly new DependencyProperty DisplayMemberPathProperty =
        DependencyProperty.Register("DisplayMemberPath", typeof(string), typeof(SfRadialMenu), new PropertyMetadata(null));


What I have tried:

can you please explain the reason
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900