Esempio n. 1
0
 /// <summary>
 /// Implementation of IScrollItemProvider.ScrollIntoView().
 /// </summary>
 public void ScrollIntoView()
 {
     if (this.ItemsControlAutomationPeer != null)
     {
         RadComboBox owner = this.ItemsControlAutomationPeer.Owner as RadComboBox;
         if (owner != null)
         {
             owner.ScrollIntoView(this.Item);
         }
     }
 }