Re[4]: Фокус ввода
От: Аноним  
Дата: 20.04.11 12:31
Оценка:
public class MyElement : FrameworkElement
{
    public static readonly DependencyProperty IsTabStopProperty;
    public static readonly DependencyProperty TabIndexProperty;


    static Cell()
    {
        IsTabStopProperty = KeyboardNavigation.IsTabStopProperty.AddOwner(typeof(Cell));
        TabIndexProperty = KeyboardNavigation.TabIndexProperty.AddOwner(typeof(Cell));

    }

    public bool IsTabStop
    {
        get
        {
            return (bool)base.GetValue(IsTabStopProperty);
        }
        set
        {
            base.SetValue(IsTabStopProperty, value);
        }
    }

    public int TabIndex
    {
        get
        {
            return (int)base.GetValue(TabIndexProperty);
        }
        set
        {
            base.SetValue(TabIndexProperty, value);
        }
    }
   
    // .............
}

Проблему не решило. Все равно виснет
 
Подождите ...
Wait...
Пока на собственное сообщение не было ответов, его можно удалить.