অন্যান্য সমস্যার সমাধান দিয়ে কিছু সমস্যার সমাধান করার চেষ্টা এখানে করা হল:
- কাট / অনুলিপি / অতীতের জন্য ডান ক্লিকের প্রসঙ্গ মেনু ব্যবহার করে সমস্ত পাঠ্য নির্বাচন না করলেও আপনি এটি সমস্ত নির্বাচন না করে।
- ডান ক্লিকের প্রসঙ্গ মেনু থেকে ফিরে আসার সময়, সমস্ত পাঠ্য সর্বদা নির্বাচিত হয়।
- Alt+ সহ অ্যাপ্লিকেশনটিতে ফিরে আসার সময় Tabসমস্ত পাঠ্য সর্বদা নির্বাচিত হয়।
- প্রথম ক্লিকে পাঠ্যের কেবলমাত্র অংশটি বেছে নেওয়ার চেষ্টা করার সময়, সবসময় নির্বাচিত হয় (উদাহরণস্বরূপ গুগল ক্রোম ঠিকানা বারের তুলনায়)।
আমার লেখা কোডটি কনফিগারযোগ্য। আপনি কি পদক্ষেপ সব আচরণ নির্বাচন তিন কেবলমাত্র ক্ষেত্র সেট করে ঘটা উচিত উপর একটি নির্বাচন করুন: 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
"সমস্ত নির্বাচন করুন" না করে।