Ok, I have a control that has an IsEditing property which for argument's sake has a default template that is normally a text block, but when IsEditing is true, it swaps in a textbox for in-place editing. Now when the control loses focus, if it's still editing, it's supposed to drop out of editing mode and swap back in the TextBlock template. Pretty straight forward, right?

Think of the behavior of renaming a file in Windows Explorer or on your desktop (which is the same thing I know...) That's the behavior we want.

The issue is you can't use the LostFocus event because when you switch to another window (or element that is a FocusManager) LostFocus doesn't fire since the control still has logical focus, so that won't work.

If you instead use LostKeyboardFocus, while that does solve the 'other FocusManager' issue, now you have a new one: when you're editing and you right-click on the textbox to show the context menu, because the context menu now has keyboard focus, your control loses keyboard focus, drops out of edit mode and closes the context menu, confusing the user!

Now I've tried setting a flag to ignore the LostKeyboardFocus just before the menu opens, then using that fiag in the LostKeyboardFocus event to determine to kick it out of editing mode or not, but if the menu is open and I click elsewhere in the app, since the control itself didn't have keyboard focus anymore (the menu had it) the control never gets another LostKeyboardFocus event so it remains in edit mode. (I may have to add a check when the menu closes to see what has focus then manually kick it out of EditMode if it's not the control. That seems promising.)

So... anyone have any idea how I can successfully code this behavior?

Mark

link|improve this question

70% accept rate
I think it's little too big to read everything. It will be nice if you put little summary, bullet points and some code example if you can put. Only if these thing will look interesting then people might read in detail to answer you. – Akash Kava May 1 '11 at 19:39
You need the detail to see what I'm talking about. I personally like longer explanations like this since I know exactly what the programmer has already gone through. I find when I don't, people keep posting the exact solutions I've already tried, even when I've already explained why they won't work because they didn't understand why they won't work. And simply put, this isn't a basic issue for a 'noob' site that can be reduced to bullet points, hence my posting on SO in the first place. – MarqueIV May 1 '11 at 19:48
2  
Oh my god... I always thought SO is exempt from the TL;DR rule - after all programmers must be able to read! – Vladislav Zorov May 1 '11 at 20:44
Thanks, @Vladislav Zorov! Couldn't agree more! – MarqueIV May 2 '11 at 4:18
feedback

2 Answers

Unfortunately you are looking for a simple solution to a complex problem. The problem stated simply is to have smart auto-committing user interface controls that require a minimum of interaction and "do the right thing" when you "switch away" from them.

The reason it is complex is because what the right thing is depends on the context of the application. The approach WPF takes is to give you to logical focus and keyboard focus concepts and to let you decide how to do the right thing for you in your situation.

What if the context menu is opened? What should happen if the application menu is opened? What if the focus is switched to another application? What if a popup is opened belonging to the local control? What if the user presses enter to close a dialog? All these situations can be handled but they all go away if you have a commit button or the user has to press enter to commit.

So you have three choices:

  • Let the control stay in the editing state when it has the logical focus
  • Add an explicit commit or apply mechanism
  • Handle all the messy cases that arise when you try to support auto-commit
link|improve this answer
I don't think this behavior is complicated at all. It's simply 'Drop out of edit mode when you lose focus' with the caveat that showing a context menu doesn't constitute losing focus. Windows Explorer has been doing this forever. Rename a file and that's the exact behavior you get... no 'Commit/Cancel' buttons needed. WinForms it was cake too since the context menus didn't steal focus. IMHO, I disagree (although I do understand why) MS made a context menu steal keyboard focus. They should have considered that however. You have to take 7 left turns to go right now. – MarqueIV May 1 '11 at 22:25
@MarqueIV: It's quite complicated actually, even the DataGrid has some problems with it. If you have DataGrids in a DataTemplate of a TabControl and you switch tabs while editing you get an exception because of some edit-logic gone wrong. – H.B. May 1 '11 at 22:30
@MarquelIV: But this is not Windows Explorer is it, nor is it WinForms. I'm not defending the whole focus design and infrastructure of WPF; it is what it is. Given that it is what is is you have three choices. – Rick Sladkey May 1 '11 at 22:31
1  
@MarqueIV: I apologize for suggesting you were looking for a simple solution. I should have said "we all wish there were a simpler solution". – Rick Sladkey May 1 '11 at 22:49
1  
@MarqueIV: Josh Smith is one of the icons of the WPF community. He answered the question you said wasn't really answered. If you ever had a chance to answer your question, that was it. BTW, I know you took some grief for this question so I'm glad you rose above the fray and kept your focus on the problem. – Rick Sladkey May 2 '11 at 4:11
show 8 more comments
feedback
up vote 1 down vote accepted

Ok... this was "fun" as in Programmer-fun. A real pain in the keester to figure out, but with a nice huge smile on my face that I did. (Time to get some IcyHot for my shoulder considering I'm patting it myself so hard! :P )

Anyway it's a multi-step thing but is surprisingly simple once you figure out everything. First, you need to use both LostFocus AND LostKeyboardFocus, not one or the other.

Whenever you receive the LostFocus event, you simply set IsEditing to false. Done and done.

LostKeyboardFocus is a little more tricky since the context menu can fire that. So there, you simply set a class-level variable (I use '_ContextMenuIsOpening') and set it to true in the ContextMenuOpening event. Then in the LostKeyboardFocus, you check that flag. If it's set, you simply clear it and do nothing else. If it's not set, that's when you set IsEditing to false.

Now there's an odd behavior that when the context menu for a control is open, and thus the control itself has already lost keyboard focus, even if you click elsewhere in the application, the control that was showing the context menu gets keyboard focus first for a split second, then instantly loses it again yielding to the other control you've clicked on. This works to our advantage here as this means we again get the LostKeyboardFocus event, except now with the _ContextMenuOpening flag set to false, thus setting IsEditing to false.

Now had the focus simply shifted away to the control you clicked on without first setting the focus back to the control owning the context menu, then we'd have to hook the ContextMenuClosing event and check what has focus after it closes, then update IsEditing if the control wasn't the one that spawned the context menu, so we dodged a bullet there.

Now there's also the caveat that if you haven't explicitly set a ContextMenu on that textbox and are relying on its default behavior, then you don't get the ContextMenuOpening event in the first place. That's easily fixed by simply creating a new context menu and assigning it to the textbox.

However, even there you have an issue as if the user of this control wants to have a context menu, but you've just set it, since yours is internal, your setter has a higher precedence so it doesn't change.

The way around that was since the textbox is actually an item in the IsEditing template for my control, I simply added a new DP on the outer control called IsEditingContextMenu which I then bind to the textbox via an internal TextBox style, then I added a DataTrigger in that style that checks the value of IsEditingContextMenu on the outer control and if it's null, I set the default menu I just created above.

Here's the internal style for the textbox (The element named 'Root' represents the outer control that the user actually inserts in their XAML)...

<Style x:Key="InlineTextbox" TargetType="TextBox">

    <Setter Property="OverridesDefaultStyle" Value="True"/>
    <Setter Property="FocusVisualStyle"      Value="{x:Null}" />
    <Setter Property="ContextMenu"           Value="{Binding IsEditingContextMenu, ElementName=Root}" />

    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type TextBoxBase}">

                <Border Background="White" BorderBrush="LightGray" BorderThickness="1" CornerRadius="1">
                    <ScrollViewer x:Name="PART_ContentHost" />
                </Border>

            </ControlTemplate>
        </Setter.Value>
    </Setter>

    <Style.Triggers>
        <DataTrigger Binding="{Binding IsEditingContextMenu, RelativeSource={RelativeSource AncestorType=local:EditableTextBlock}}" Value="{x:Null}">
            <Setter Property="ContextMenu">
                <Setter.Value>
                    <ContextMenu>
                        <MenuItem Command="ApplicationCommands.Cut" />
                        <MenuItem Command="ApplicationCommands.Copy" />
                        <MenuItem Command="ApplicationCommands.Paste" />
                    </ContextMenu>
                </Setter.Value>
            </Setter>
        </DataTrigger>
    </Style.Triggers>

</Style>

Note that you have to set the initial context menu binding in the style, not directly on the textbox or else the style's DataTrigger gets superseded by the directly-set value rendering the trigger useless and you're right back to square one if the person uses 'Null' for the context menu. (If you WANT to suppress the menu, you wouldn't use 'null' anyway. You'd set it to an empty menu as null means 'Use the default')

So now the user can use the regular ContextMenu property when IsEditing is false... they can use the IsEditingContextMenu when IsEditing is true, and if they didn't specify an IsEditingContextMenu, the internal default that we defined is used for the textbox. Since the textbox's context menu can never actually be null, its ContextMenuOpening always fires, and therefore the logic to support this behavior works.

Like I said... REAL pain in the can here, but damn if I don't have a really cool feeling of accomplishment here. I hope this helps others here with the same issue. Feel free to reply here or PM me with questions.

Mark

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.