यहाँ कुछ समस्याओं को अन्य समाधानों के साथ हल करने का प्रयास किया गया है:
- कट / कॉपी / पास्ट के लिए राइट क्लिक के संदर्भ मेनू का उपयोग करना सभी पाठ का चयन करता है, भले ही आपने यह सब नहीं चुना हो।
- राइट क्लिक संदर्भ मेनू से लौटते समय, सभी पाठ हमेशा चुने जाते हैं।
- Alt+ के साथ आवेदन पर लौटते समय Tab, सभी पाठ हमेशा चुने जाते हैं।
- जब पहली क्लिक पर पाठ के केवल भाग का चयन करने का प्रयास किया जाता है, तो सभी को हमेशा चुना जाता है (उदाहरण के लिए Google क्रोमस एड्रेस बार के विपरीत)।
मेरे द्वारा लिखा गया कोड विन्यास योग्य है। आप क्या कार्रवाई सब व्यवहार का चयन तीन केवल पढ़ने के लिए क्षेत्रों की स्थापना द्वारा होने चाहिए पर चुन सकते हैं: SelectOnKeybourdFocus
, SelectOnMouseLeftClick
, SelectOnMouseRightClick
।
इस समाधान का नकारात्मक पक्ष यह है कि यह अधिक जटिल है और स्थिर स्थिति संग्रहीत है। यह TextBox
नियंत्रण के चूक व्यवहार के साथ एक बदसूरत संघर्ष की तरह लगता है । फिर भी, यह काम करता है और सभी कोड अटैच्ड प्रॉपर्टी कंटेनर क्लास में छिपा हुआ है।
public static class TextBoxExtensions
{
// Configuration fields to choose on what actions the select all behavior should occur.
static readonly bool SelectOnKeybourdFocus = true;
static readonly bool SelectOnMouseLeftClick = true;
static readonly bool SelectOnMouseRightClick = true;
// Remembers a right click context menu that is opened
static ContextMenu ContextMenu = null;
// Remembers if the first action on the TextBox is mouse down
static bool FirstActionIsMouseDown = false;
public static readonly DependencyProperty SelectOnFocusProperty =
DependencyProperty.RegisterAttached("SelectOnFocus", typeof(bool), typeof(TextBoxExtensions), new PropertyMetadata(false, new PropertyChangedCallback(OnSelectOnFocusChanged)));
[AttachedPropertyBrowsableForChildren(IncludeDescendants = false)]
[AttachedPropertyBrowsableForType(typeof(TextBox))]
public static bool GetSelectOnFocus(DependencyObject obj)
{
return (bool)obj.GetValue(SelectOnFocusProperty);
}
public static void SetSelectOnFocus(DependencyObject obj, bool value)
{
obj.SetValue(SelectOnFocusProperty, value);
}
private static void OnSelectOnFocusChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
if (!(d is TextBox textBox)) return;
if (GetSelectOnFocus(textBox))
{
// Register events
textBox.PreviewMouseDown += TextBox_PreviewMouseDown;
textBox.PreviewMouseUp += TextBox_PreviewMouseUp;
textBox.GotKeyboardFocus += TextBox_GotKeyboardFocus;
textBox.LostKeyboardFocus += TextBox_LostKeyboardFocus;
}
else
{
// Unregister events
textBox.PreviewMouseDown -= TextBox_PreviewMouseDown;
textBox.PreviewMouseUp -= TextBox_PreviewMouseUp;
textBox.GotKeyboardFocus -= TextBox_GotKeyboardFocus;
textBox.LostKeyboardFocus -= TextBox_LostKeyboardFocus;
}
}
private static void TextBox_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
if (!(sender is TextBox textBox)) return;
// If mouse clicked and focus was not in text box, remember this is the first click.
// This will enable to prevent select all when the text box gets the keyboard focus
// right after the mouse down event.
if (!textBox.IsKeyboardFocusWithin)
{
FirstActionIsMouseDown = true;
}
}
private static void TextBox_PreviewMouseUp(object sender, MouseButtonEventArgs e)
{
if (!(sender is TextBox textBox)) return;
// Select all only if:
// 1) SelectOnMouseLeftClick/SelectOnMouseRightClick is true and left/right button was clicked
// 3) This is the first click
// 4) No text is selected
if (((SelectOnMouseLeftClick && e.ChangedButton == MouseButton.Left) ||
(SelectOnMouseRightClick && e.ChangedButton == MouseButton.Right)) &&
FirstActionIsMouseDown &&
string.IsNullOrEmpty(textBox.SelectedText))
{
textBox.SelectAll();
}
// It is not the first click
FirstActionIsMouseDown = false;
}
private static void TextBox_GotKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
if (!(sender is TextBox textBox)) return;
// Select all only if:
// 1) SelectOnKeybourdFocus is true
// 2) Focus was not previously out of the application (e.OldFocus != null)
// 3) The mouse was pressed down for the first after on the text box
// 4) Focus was not previously in the context menu
if (SelectOnKeybourdFocus &&
e.OldFocus != null &&
!FirstActionIsMouseDown &&
!IsObjectInObjectTree(e.OldFocus as DependencyObject, ContextMenu))
{
textBox.SelectAll();
}
// Forget ContextMenu
ContextMenu = null;
}
private static void TextBox_LostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
if (!(sender is TextBox textBox)) return;
// Remember ContextMenu (if opened)
ContextMenu = e.NewFocus as ContextMenu;
// Forget selection when focus is lost if:
// 1) Focus is still in the application
// 2) The context menu was not opened
if (e.NewFocus != null
&& ContextMenu == null)
{
textBox.SelectionLength = 0;
}
}
// Helper function to look if a DependencyObject is contained in the visual tree of another object
private static bool IsObjectInObjectTree(DependencyObject searchInObject, DependencyObject compireToObject)
{
while (searchInObject != null && searchInObject != compireToObject)
{
searchInObject = VisualTreeHelper.GetParent(searchInObject);
}
return searchInObject != null;
}
}
अटैच्ड प्रॉपर्टी को अटेच करने के लिए TextBox
, आपको केवल प्रॉपर्टी की एक्सएमएल नेमस्पेस ( xmlns
) जोड़ना है और फिर इसे इस तरह इस्तेमाल करना है:
<TextBox attachedprop:TextBoxExtensions.SelectOnFocus="True"/>
इस समाधान के बारे में कुछ नोट्स:
- माउस डाउन ईवेंट के डिफ़ॉल्ट व्यवहार को ओवरराइड करने के लिए और पहले क्लिक पर टेक्स्ट के केवल भाग का चयन करने में सक्षम करने के लिए, सभी टेक्स्ट को माउस अप इवेंट पर चुना जाता है।
- मुझे इस तथ्य से निपटना था कि
TextBox
ध्यान खो देने के बाद इसका चयन याद रहता है। मैंने वास्तव में इस व्यवहार को ओवरराइड किया है।
- मुझे याद रखना चाहिए कि क्या एक माउस बटन नीचे
TextBox
( FirstActionIsMouseDown
स्थिर क्षेत्र) पर पहली क्रिया है ।
- मुझे राइट क्लिक (
ContextMenu
स्टैटिक फील्ड) द्वारा खोला गया संदर्भ मेनू याद रखना था ।
एकमात्र दुष्प्रभाव जो मुझे मिला SelectOnMouseRightClick
वह सच है। कभी-कभी राइट-क्लिक संदर्भ मेनू फ़्लिकर होता है, जब इसके खुले और एक रिक्त पर राइट-क्लिक TextBox
करने से "सभी का चयन करें" नहीं होता है।