static SelectableTextBlock() { FocusableProperty.OverrideMetadata(typeof(SelectableTextBlock), new FrameworkPropertyMetadata(true)); TextEditorWrapper.RegisterCommandHandlers(typeof(SelectableTextBlock), true, true, true); // remove the focus rectangle around the control FocusVisualStyleProperty.OverrideMetadata(typeof(SelectableTextBlock), new FrameworkPropertyMetadata((object)null)); }
public static TextEditorWrapper CreateFor(TextBlock tb) { object textContainer = TextContainerProp.GetValue(tb); TextEditorWrapper editor = new TextEditorWrapper(textContainer, tb, false); IsReadOnlyProp.SetValue(editor.editor_, true); TextViewProp.SetValue(editor.editor_, TextContainerTextViewProp.GetValue(textContainer)); return(editor); }
public SelectableTextBlock() { this.editor_ = TextEditorWrapper.CreateFor(this); }