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