Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / WPF
Article

Editable TextBlock in WPF for In-place Editing

Rate me:
Please Sign up or sign in to vote.
4.33/5 (30 votes)
10 Dec 2008CPOL2 min read 189.1K   8.3K   51   42
An editable TextBlock component that allows for in-place editing of, e.g., items in a TreeView.
Sample Image

Introduction

When renaming folders in the Windows Explorer folder tree, the TextBlock containing the name of the folder changes to a TextBox which allows for editing of the folder name inside of the tree. I couldn't find any complete examples, so I decided to make one myself. The EditableTextBlock control is based on the Annotating an Image in WPF article by Josh Smith.

Using the Code

Basically, the control is made of a TextBlock for displaying the text and a TextBox for editing. The IsInEditMode property described below determines which one is currently shown.

The EditableTextBlock control exposes four properties:

  • string Text - The editable text displayed to the user (note TextFormat below).
  • bool IsEditable - Whether or not the control is editable. If not, it behaves just as a regular TextBlock.
  • bool IsInEditMode - Whether or not the control is currently being edited.
  • string TextFormat - Used if the editable text should be surrounded by more text, like the root node in the screenshot above.

The item labeled 'Item 1.1' in the screenshot is defined in XAML as follows:

XML
<TreeViewItem>
    <TreeViewItem.Header>
        <local:EditableTextBlock Text="Item 1.1" />
    </TreeViewItem.Header>
</TreeViewItem>

In order to let the user edit the contents of the control, you have to set the IsInEditMode property to true. For example, the demo application lets the user edit the selected item in the TreeView when the F2 key is pressed, by using the KeyDown event of the TreeView:

C#
private void treeView1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Key.F2)
        SetCurrentItemInEditMode(true);
}

private void SetCurrentItemInEditMode(bool EditMode)
{
    // Make sure that the SelectedItem is actually a TreeViewItem
    // and not null or something else
    if (treeView1.SelectedItem is TreeViewItem)
    {
        TreeViewItem tvi = treeView1.SelectedItem as TreeViewItem;

        // Also make sure that the TreeViewItem
        // uses an EditableTextBlock as its header
        if (tvi.Header is EditableTextBlock)
        {
            EditableTextBlock etb = tvi.Header as EditableTextBlock;

            // Finally make sure that we are
            // allowed to edit the TextBlock
            if (etb.IsEditable)
                etb.IsInEditMode = EditMode;
        }
    }
}

The control leaves edit mode when one of four things happen:

  • The control loses focus, e.g., when the user clicks on another control.
  • The user hits the Enter key, in which case the edited text is saved in the Text property.
  • The user hits the Escape key, in which case the original text, from before the editing started, is restored.
  • The IsInEditMode property is manually set to false.

The TextFormat Property

The TextFormat property uses the String.Format function to format the text, which means that the editable text is referenced by {0} inside a string. For example, the root node in the demo application is defined in XAML as follows:

XML
<TreeViewItem>
    <TreeViewItem.Header>
        <local:EditableTextBlock Text="Root" TextFormat="Root Item '{0}'" />
    </TreeViewItem.Header>
</TreeViewItem>

If the TextFormat property is set to either the empty string (""), the string containing only {0} ("{0}"), or is not set at all, the control simply shows the string from the Text property.

History

  • December 8, 2008 - Created the article
  • December 8, 2008 - Updated source code

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Denmark Denmark
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionIt's not working.... Pin
Member 1245337321-Sep-16 20:53
Member 1245337321-Sep-16 20:53 
AnswerRe: It's not working.... Pin
Boumbles3-Nov-16 6:39
Boumbles3-Nov-16 6:39 
QuestionCould you update the namespace of the source code, so everyone can download and run? Pin
leiyangge12-Jan-14 21:26
leiyangge12-Jan-14 21:26 
GeneralMy vote of 2 Pin
Ivan Krivyakov20-Aug-13 13:21
Ivan Krivyakov20-Aug-13 13:21 
QuestionRe: My vote of 2 Pin
Zoner9-Feb-14 23:34
Zoner9-Feb-14 23:34 
AnswerProject Sample not Compiling - SOLUTION ! Pin
Member 799428912-Mar-13 9:31
Member 799428912-Mar-13 9:31 
GeneralRe: Project Sample not Compiling - SOLUTION ! Pin
Bogdan Maksimović1-Aug-13 3:03
Bogdan Maksimović1-Aug-13 3:03 
GeneralMy vote of 4 Pin
Anna Novikova19-Mar-12 7:58
professionalAnna Novikova19-Mar-12 7:58 
GeneralIn order to build the sample Pin
rencels17-Apr-11 6:12
rencels17-Apr-11 6:12 
QuestionEvents lost?? Pin
jamluke19-Nov-10 3:40
jamluke19-Nov-10 3:40 
GeneralPressing F2 to edit Pin
cmmello10-Nov-10 5:38
cmmello10-Nov-10 5:38 
GeneralMy vote of 1 Pin
codddddd5-Nov-10 7:11
codddddd5-Nov-10 7:11 
GeneralMy vote of 1 Pin
PJBadenhorst3-May-10 0:06
PJBadenhorst3-May-10 0:06 
GeneralMy vote of 4 PinPopular
Christian Rodemeyer31-Jan-10 23:40
professionalChristian Rodemeyer31-Jan-10 23:40 
I would have voted 5 because this little demo solves exactly my problem, but

- you need to manually change the namespace of "EditableTextBlock.xaml.cs" to Borgstrup.EditableTextBlock before the project compiles
- the usual "slow double click" to begin editing is not implemented
- and the usage in a databound context could be better (documented)

Nevertheless is saved me time and therefore I vote 4Cool | :cool:

Christian
---
Always expect the unexpected!

GeneralRe: My vote of 4 Pin
bscaer14-Oct-10 7:32
bscaer14-Oct-10 7:32 
QuestionMultiline ? Pin
pbisiac27-Jan-10 0:58
pbisiac27-Jan-10 0:58 
GeneralMy vote of 1 Pin
Deni8415-Jan-10 3:07
Deni8415-Jan-10 3:07 
GeneralUsing HierarchicalDataTemplate Problem PinPopular
archmisha8-Dec-09 12:33
archmisha8-Dec-09 12:33 
GeneralRe: Using HierarchicalDataTemplate Problem Pin
boetor14-Dec-09 21:58
boetor14-Dec-09 21:58 
QuestionRe: Using HierarchicalDataTemplate Problem Pin
piotri8530-Dec-09 6:20
piotri8530-Dec-09 6:20 
AnswerRe: Using HierarchicalDataTemplate Problem Pin
jamluke19-Nov-10 3:16
jamluke19-Nov-10 3:16 
GeneralRe: Using HierarchicalDataTemplate Problem Pin
cohoman18-Mar-11 4:16
cohoman18-Mar-11 4:16 
AnswerRe: Using HierarchicalDataTemplate Problem Pin
Member 809702021-Jul-11 7:23
Member 809702021-Jul-11 7:23 
AnswerRe: Using HierarchicalDataTemplate Problem Pin
andhome222-Jun-12 11:15
andhome222-Jun-12 11:15 
GeneralRe: Using HierarchicalDataTemplate Problem Pin
Sam Bomb4-Jul-12 1:15
Sam Bomb4-Jul-12 1:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.