C# 클래스 Fluent.TextBox

상속: RibbonControl
파일 보기 프로젝트 열기: Gainedge/BetterExplorer 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
AutoWordSelectionProperty System.Windows.DependencyProperty
CaretBrushProperty System.Windows.DependencyProperty
CharacterCasingProperty System.Windows.DependencyProperty
InputWidthProperty System.Windows.DependencyProperty
IsReadOnlyProperty System.Windows.DependencyProperty
IsUndoEnabledProperty System.Windows.DependencyProperty
MaxLengthProperty System.Windows.DependencyProperty
SelectionBrushProperty System.Windows.DependencyProperty
SelectionOpacityProperty System.Windows.DependencyProperty
TextAlignmentProperty System.Windows.DependencyProperty
TextDecorationsProperty System.Windows.DependencyProperty
TextProperty System.Windows.DependencyProperty
UndoLimitProperty System.Windows.DependencyProperty

공개 메소드들

메소드 설명
AppendText ( string text ) : void

Appends text

Copy ( ) : void

Copies selected content to the clipboard

CreateQuickAccessItem ( ) : FrameworkElement

Gets control which represents shortcut item. This item MUST be syncronized with the original and send command to original one control.

Cut ( ) : void

Cuts selected content to the clipboard

OnApplyTemplate ( ) : void

When overridden in a derived class, is invoked whenever application code or internal processes call ApplyTemplate

OnKeyTipPressed ( ) : void

Handles key tip pressed

OnTextBoxTemplatedGotKeyboardFocus ( object sender, System.Windows.Input.KeyboardFocusChangedEventArgs e ) : void
OnTextBoxTemplatedKeyDown ( object sender, System.Windows.Input.KeyEventArgs e ) : void
OnTextBoxTemplatedLostFocus ( object sender, RoutedEventArgs e ) : void
OnTextBoxTemplatedSelectionChanged ( object sender, RoutedEventArgs e ) : void
OnTextBoxTemplatedTextChanged ( object sender, System.Windows.Controls.TextChangedEventArgs e ) : void
Paste ( ) : void

Pastes content from the clipboard

RaiseSelectionChanged ( ) : void
RaiseTextChanged ( System.Windows.Controls.TextChangedEventArgs args ) : void
Redo ( ) : bool

Redoes the most recent undo command

Select ( int start, int length ) : void

Selects contents

SelectAll ( ) : void

Selects all the contents

Undo ( ) : bool

Undoes the most recent undo command

보호된 메소드들

메소드 설명
BindQuickAccessItem ( FrameworkElement element ) : void

This method must be overridden to bind properties to use in quick access creating

OnGotFocus ( RoutedEventArgs e ) : void

Invoked whenever an unhandled E:System.Windows.UIElement.GotFocus event reaches this element in its route.

OnKeyUp ( System.Windows.Input.KeyEventArgs e ) : void

Invoked when an unhandled System.Windows.Input.Keyboard.KeyUp�attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.

비공개 메소드들

메소드 설명
IsTemplateValid ( ) : bool
OnCoerceStyle ( DependencyObject d, object basevalue ) : object
TextBox ( ) : System

메소드 상세

AppendText() 공개 메소드

Appends text
public AppendText ( string text ) : void
text string Text
리턴 void

BindQuickAccessItem() 보호된 메소드

This method must be overridden to bind properties to use in quick access creating
protected BindQuickAccessItem ( FrameworkElement element ) : void
element System.Windows.FrameworkElement Toolbar item
리턴 void

Copy() 공개 메소드

Copies selected content to the clipboard
public Copy ( ) : void
리턴 void

CreateQuickAccessItem() 공개 메소드

Gets control which represents shortcut item. This item MUST be syncronized with the original and send command to original one control.
public CreateQuickAccessItem ( ) : FrameworkElement
리턴 System.Windows.FrameworkElement

Cut() 공개 메소드

Cuts selected content to the clipboard
public Cut ( ) : void
리턴 void

OnApplyTemplate() 공개 메소드

When overridden in a derived class, is invoked whenever application code or internal processes call ApplyTemplate
public OnApplyTemplate ( ) : void
리턴 void

OnGotFocus() 보호된 메소드

Invoked whenever an unhandled E:System.Windows.UIElement.GotFocus event reaches this element in its route.
protected OnGotFocus ( RoutedEventArgs e ) : void
e System.Windows.RoutedEventArgs The that contains the event data.
리턴 void

OnKeyTipPressed() 공개 메소드

Handles key tip pressed
public OnKeyTipPressed ( ) : void
리턴 void

OnKeyUp() 보호된 메소드

Invoked when an unhandled System.Windows.Input.Keyboard.KeyUp�attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
protected OnKeyUp ( System.Windows.Input.KeyEventArgs e ) : void
e System.Windows.Input.KeyEventArgs The System.Windows.Input.KeyEventArgs that contains the event data.
리턴 void

OnTextBoxTemplatedGotKeyboardFocus() 공개 메소드

public OnTextBoxTemplatedGotKeyboardFocus ( object sender, System.Windows.Input.KeyboardFocusChangedEventArgs e ) : void
sender object
e System.Windows.Input.KeyboardFocusChangedEventArgs
리턴 void

OnTextBoxTemplatedKeyDown() 공개 메소드

public OnTextBoxTemplatedKeyDown ( object sender, System.Windows.Input.KeyEventArgs e ) : void
sender object
e System.Windows.Input.KeyEventArgs
리턴 void

OnTextBoxTemplatedLostFocus() 공개 메소드

public OnTextBoxTemplatedLostFocus ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
리턴 void

OnTextBoxTemplatedSelectionChanged() 공개 메소드

public OnTextBoxTemplatedSelectionChanged ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
리턴 void

OnTextBoxTemplatedTextChanged() 공개 메소드

public OnTextBoxTemplatedTextChanged ( object sender, System.Windows.Controls.TextChangedEventArgs e ) : void
sender object
e System.Windows.Controls.TextChangedEventArgs
리턴 void

Paste() 공개 메소드

Pastes content from the clipboard
public Paste ( ) : void
리턴 void

RaiseSelectionChanged() 공개 메소드

public RaiseSelectionChanged ( ) : void
리턴 void

RaiseTextChanged() 공개 메소드

public RaiseTextChanged ( System.Windows.Controls.TextChangedEventArgs args ) : void
args System.Windows.Controls.TextChangedEventArgs
리턴 void

Redo() 공개 메소드

Redoes the most recent undo command
public Redo ( ) : bool
리턴 bool

Select() 공개 메소드

Selects contents
public Select ( int start, int length ) : void
start int Start
length int Length
리턴 void

SelectAll() 공개 메소드

Selects all the contents
public SelectAll ( ) : void
리턴 void

Undo() 공개 메소드

Undoes the most recent undo command
public Undo ( ) : bool
리턴 bool

프로퍼티 상세

AutoWordSelectionProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for AutoWordSelection. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows AutoWordSelectionProperty
리턴 System.Windows.DependencyProperty

CaretBrushProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for CaretBrush. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows CaretBrushProperty
리턴 System.Windows.DependencyProperty

CharacterCasingProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for CharacterCasing. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows CharacterCasingProperty
리턴 System.Windows.DependencyProperty

InputWidthProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for InputWidth. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows InputWidthProperty
리턴 System.Windows.DependencyProperty

IsReadOnlyProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for IsReadonly. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows IsReadOnlyProperty
리턴 System.Windows.DependencyProperty

IsUndoEnabledProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for IsUndoEnabled. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows IsUndoEnabledProperty
리턴 System.Windows.DependencyProperty

MaxLengthProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for MaxLength. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows MaxLengthProperty
리턴 System.Windows.DependencyProperty

SelectionBrushProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for SelectionBrush. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows SelectionBrushProperty
리턴 System.Windows.DependencyProperty

SelectionOpacityProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for SelectionOpacity. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows SelectionOpacityProperty
리턴 System.Windows.DependencyProperty

TextAlignmentProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for TextAlignment. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows TextAlignmentProperty
리턴 System.Windows.DependencyProperty

TextDecorationsProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for TextDecorations. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows TextDecorationsProperty
리턴 System.Windows.DependencyProperty

TextProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for Content. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows TextProperty
리턴 System.Windows.DependencyProperty

UndoLimitProperty 공개적으로 정적으로 프로퍼티

Using a DependencyProperty as the backing store for UndoLimit. This enables animation, styling, binding, etc...
public static DependencyProperty,System.Windows UndoLimitProperty
리턴 System.Windows.DependencyProperty