我刚刚重新考虑过WindowsBase.dll >> System.Windows.UncommonField<T>
,我想知道这个类的用法......例如它在Button
-class中使用:
public class Button : ButtonBase
{
private static readonly UncommonField<KeyboardFocusChangedEventHandler> FocusChangedEventHandlerField = new UncommonField<KeyboardFocusChangedEventHandler>();
}
那么这个“包装器”有什么用呢?