प्लेसहोल्डर टेक्स्ट को टेक्स्टबॉक्स में जोड़ना


147

मैं प्लेसहोल्डर टेक्स्ट को टेक्स्टबॉक्स में जोड़ने का एक तरीका ढूंढ रहा हूं जैसे आप html5 में टेक्स्टबॉक्स के साथ कर सकते हैं।

Ie यदि टेक्स्टबॉक्स में कोई टेक्स्ट नहीं है, तो यह टेक्स्ट को जोड़ता है Enter some text here, जब उपयोगकर्ता उस पर क्लिक करता है तो प्लेसहोल्डर टेक्स्ट गायब हो जाता है और उपयोगकर्ता को अपना टेक्स्ट दर्ज करने की अनुमति देता है, और यदि टेक्स्टबॉक्स फोकस खो देता है और अभी भी कोई टेक्स्ट नहीं है तो प्लेसहोल्डर है टेक्स्टबॉक्स में वापस जोड़ा गया।


4
प्लेसहोल्डर टेक्स्ट के लिए टेक्स्ट प्रॉपर्टी का उपयोग न करें। यह बाध्यकारी के साथ हस्तक्षेप करेगा। AdornerDecorator ( msdn.microsoft.com/en-us/library/… ) का उपयोग करें
Pavel Voronin

2
एक पर नजर डालें stackoverflow.com/questions/833943/...
SepehrM

5
बस एक FYI करें - वॉटरमार्क उर्फ संकेत पाठ उर्फ प्लेसहोल्डर पाठ उर्फ क्यू बैनर । इन सभी शब्दों का पर्यायवाची इरादा है।
आरबीटी

जवाबों:


91

क्या ऐसा कुछ नहीं होगा:

Textbox myTxtbx = new Textbox();
myTxtbx.Text = "Enter text here...";

myTxtbx.GotFocus += GotFocus.EventHandle(RemoveText);
myTxtbx.LostFocus += LostFocus.EventHandle(AddText);

public void RemoveText(object sender, EventArgs e)
{
    if (myTxtbx.Text == "Enter text here...") 
    {
     myTxtbx.Text = "";
    }
}

public void AddText(object sender, EventArgs e)
{
    if (string.IsNullOrWhiteSpace(myTxtbx.Text))
        myTxtbx.Text = "Enter text here...";
}

बस छद्म कोड है, लेकिन अवधारणा है।


धन्यवाद मैं उम्मीद कर रहा था कि XAML के कुछ प्रकार हैं जिनका उपयोग प्लेसहोल्डर बनाने के लिए किया जा सकता है। आपकी मदद के लिए धन्यवाद
22y पर बोर्डी

1
मैं एक ऐसा समाधान खोजने की उम्मीद कर रहा था जो टेक्स्ट बॉक्स में प्लेसहोल्डर टेक्स्ट को तब तक रखेगा जब तक उपयोगकर्ता टेक्स्ट में प्रवेश नहीं करता। ऐसा लगता है कि बेहतर काम करेगा।
DROP TABLE उपयोगकर्ता

6
यह BUT काम करेगा यदि टेक्स्टबॉक्स मान स्रोत से बंधा हुआ है तो आपको शायद कोई समस्या है।
पावेल वोरोनिन

1
यह अच्छा सरल समाधान है, केवल एक चीज यह है कि पाठ दर्ज करने के बाद भी, यदि उपयोगकर्ता फिर से पाठ बॉक्स पर क्लिक करता है (जैसे अधिक पाठ जोड़ना या कुछ वर्ण हटाना) पूरे पाठ बॉक्स में दर्ज मान खो जाएगा
बिबासवन बंद्योपाध्याय

2
RemoveTextऔर AddTextविधि होनी चाहिए public void, लापता शून्य । और जैसा @BibaswannBandyopadhyay ने कहा है, RemoveTextविधि यह हो सकती है:if (myTxtbx.Text == "Enter text here...") {myTxtbx.Text = "";}
काका

91

आप इसका उपयोग कर सकते हैं, यह मेरे लिए काम कर रहा है और अत्यंत सरल उपाय है।

    <Style x:Key="placeHolder" TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type TextBox}">
                    <Grid>
                        <TextBox Text="{Binding Path=Text,
                                                RelativeSource={RelativeSource TemplatedParent}, 
                                                Mode=TwoWay,
                                                UpdateSourceTrigger=PropertyChanged}"
                                 x:Name="textSource" 
                                 Background="Transparent" 
                                 Panel.ZIndex="2" />
                        <TextBox Text="{TemplateBinding Tag}" Background="{TemplateBinding Background}" Panel.ZIndex="1">
                            <TextBox.Style>
                                <Style TargetType="{x:Type TextBox}">
                                    <Setter Property="Foreground" Value="Transparent"/>
                                    <Style.Triggers>
                                        <DataTrigger Binding="{Binding Path=Text, Source={x:Reference textSource}}" Value="">
                                            <Setter Property="Foreground" Value="LightGray"/>
                                        </DataTrigger>
                                    </Style.Triggers>
                                </Style>
                            </TextBox.Style>
                        </TextBox>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

उपयोग:

<TextBox Style="{StaticResource placeHolder}" Tag="Name of customer" Width="150" Height="24"/>

‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎‎


1
हाय @MacGile, मैंने आपके महान समाधान को संशोधित किया है, क्योंकि मुझे मूल पाठ संपत्ति और textSource.Text संपत्ति के बीच दो तरह से बाध्य करने की आवश्यकता है।
गैबोर प्लाज

1
@ रोब ने इसे एक संसाधन शब्दकोश में रखा। Window.Resources, आदि
ब्रायन

6
फोकस मुद्दों के लिए इसे जोड़ें: <ControlTemplate.Triggers> <Trigger Property="IsFocused" Value="True"> <Setter Property="FocusManager.FocusedElement" TargetName="textSource" Value="{Binding RelativeSource={RelativeSource Self}}" /> </Trigger> </ControlTemplate.Triggers>
सिहान याकार

1
मैं पर हमले करता हूँ TextWrapping="wrap"शैली में पाठ बॉक्स टैग की दोनों पर, स्थिति में आप निम्न मैंने किया प्लेसहोल्डर पाठ के साथ एक बहु लाइन पाठ बॉक्स करना चाहते हैं।
jpcguy89

1
@ सैशिन मैंने अपनी मैक्सलेन्ट प्रॉपर्टी तय कर ली है। समस्या यह है कि एक टेक्स्टबॉक्स को 2 टेक्स्टबॉक्स से बदल दिया जाता है। एक इनपुट के लिए और एक प्लेसहोल्डर के लिए। ठीक टूट गुण करने के लिए आप सिर्फ उन्हें इस तरह पहले पाठ बॉक्स में जोड़ने के लिए की जरूरत है: <TextBox Text="{Binding Path=Text, RelativeSource=RelativeSource TemplatedParent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" x:Name="textSource" Background="Transparent" Panel.ZIndex="2" MaxLength="{TemplateBinding MaxLength}" />। आपके मामले में आपको शायद जोड़ने की जरूरत हैAcceptsReturn="{TemplateBinding AcceptsReturn}"
ColmanJ

47

प्लेसहोल्डर टेक्स्ट को सेट और रिमूव करने के लिए फ़ोकस एंटर और फ़ोकस लीव इवेंट्स को हैंडल करने के बजाय, EM_SETCUEBANNERहमारे लिए काम करने के लिए हमारे टेक्स्टबॉक्स में संदेश भेजने के लिए Windows SendMessage फ़ंक्शन का उपयोग करना संभव है।

यह दो आसान चरणों के साथ किया जा सकता है। पहले हमें विंडोज SendMessageफ़ंक्शन को उजागर करने की आवश्यकता है ।

private const int EM_SETCUEBANNER = 0x1501;

[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern Int32 SendMessage(IntPtr hWnd, int msg, int wParam, [MarshalAs(UnmanagedType.LPWStr)]string lParam);

फिर बस हमारे टेक्स्टबॉक्स, EM_SETCUEBANNER के मूल्य और जिस पाठ को हम सेट करना चाहते हैं उसके हैंडल के साथ विधि को कॉल करें।

SendMessage(textBox1.Handle, EM_SETCUEBANNER, 0, "Username");
SendMessage(textBox2.Handle, EM_SETCUEBANNER, 0, "Password");

संदर्भ: टेक्स्टबॉक्स के लिए प्लेसहोल्डर टेक्स्ट सेट करें (क्यू टेक्स्ट)


10
नोट: यह WPF के लिए काम नहीं करता है । देखें: stackoverflow.com/questions/5054872/…
ArtOfCode

यहां सबसे अच्छा जवाब है, लेकिन ध्यान दें फॉर्म_ऑड बहुत जल्दी है, मुझे काम करने से पहले Form_Shown तक इंतजार करना पड़ा।
Jay Croghan

इसके बारे में मुझे केवल एक ही चीज़ से नफरत है कि जैसे ही नियंत्रण प्राप्त होता है, पाठ गायब हो जाता है, जिसका अर्थ है कि यदि आपने वह नहीं पकड़ा जो उसने कहा (और यह महत्वपूर्ण है), तो आपको प्लेसहोल्डर पाठ को फिर से देखने के लिए उस पर क्लिक करना होगा । मैंने प्लेसहोल्डर को जोड़ने के लिए एक और उत्तर जोड़ा, जो उपयोगकर्ता के टाइप करने के बाद ही गायब हो जाता है।
गेब्रियल लुसी

19

इस वर्ग को अपनी परियोजना में जोड़ें और अपने समाधान का निर्माण करें। विज़ुअल स्टूडियो के टूलबॉक्स पर क्लिक करें, आपको प्लेसहोल्डर टेक्स्टबॉक्स नामक एक नया टेक्स्टबॉक्स घटक दिखाई देगा। फ़ॉर्म डिज़ाइन पर अपना वर्तमान टेक्स्टबॉक्स हटाएं और PlaceHolderTextBox से बदलें।

यहाँ छवि विवरण दर्ज करें

PlaceHolderTextBox का एक गुण है PlaceHolderText। आप चाहते हैं और अच्छा दिन है किसी भी पाठ सेट :)

public class PlaceHolderTextBox : TextBox
{

    bool isPlaceHolder = true;
    string _placeHolderText;
    public string PlaceHolderText
    {
        get { return _placeHolderText; }
        set
        {
            _placeHolderText = value;
            setPlaceholder();
        }
    }

    public new string Text
    {
        get => isPlaceHolder ? string.Empty : base.Text;
        set => base.Text = value;
    }

    //when the control loses focus, the placeholder is shown
    private void setPlaceholder()
    {
        if (string.IsNullOrEmpty(base.Text))
        {
            base.Text = PlaceHolderText;
            this.ForeColor = Color.Gray;
            this.Font = new Font(this.Font, FontStyle.Italic);
            isPlaceHolder = true;
        }
    }

    //when the control is focused, the placeholder is removed
    private void removePlaceHolder()
    {

        if (isPlaceHolder)
        {
            base.Text = "";
            this.ForeColor = System.Drawing.SystemColors.WindowText;
            this.Font = new Font(this.Font, FontStyle.Regular);
            isPlaceHolder = false;
        }
    }
    public PlaceHolderTextBox()
    {
        GotFocus += removePlaceHolder;
        LostFocus += setPlaceholder;
    }

    private void setPlaceholder(object sender, EventArgs e)
    {
        setPlaceholder();
    }

    private void removePlaceHolder(object sender, EventArgs e)
    {
        removePlaceHolder();
    }
}

11
जब Textसंपत्ति के मूल्य पर कुछ अन्य नियंत्रण कार्य करते हैं (जैसे किसी सूची को फ़िल्टर करने के लिए उपयोग किया जाने वाला टेक्स्टबॉक्स), तो प्लेसहोल्डर का उपयोग फ़िल्टरिंग के लिए किया जाएगा। प्लेसहोल्डर मूल्य का उपयोग केवल प्रदर्शित करने के लिए किया जाना चाहिए, इसलिए Textसंपत्ति को अस्थायी रूप से प्रतिस्थापित करना एक अच्छा विचार नहीं है ।
रोलैंड इलिग

1
नीट समाधान, मुझे यह पसंद है। मैं इन कामों को कक्षा के शीर्ष पर जोड़ दूंगा, ताकि यह काम कर सके: इसके using System; using System.Drawing; using System.Windows.Forms;लिए धन्यवाद!
एल्डोआर

18

यह मेरा कोड नहीं है, लेकिन मैं इसे बहुत उपयोग करता हूं और यह सही काम करता है ... एक्सएएमएल केवल

<TextBox x:Name="Textbox" Height="23" Margin="0,17,18.8,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" HorizontalAlignment="Right" ></TextBox>

<TextBlock x:Name="Placeholder" IsHitTestVisible="False" TextWrapping="Wrap" Text="Placeholder Text" VerticalAlignment="Top" Margin="0,20,298.8,0" Foreground="DarkGray" HorizontalAlignment="Right" Width="214">
  <TextBlock.Style>
    <Style TargetType="{x:Type TextBlock}">
      <Setter Property="Visibility" Value="Collapsed"/>
      <Style.Triggers>
        <DataTrigger Binding="{Binding Text, ElementName=Textbox}" Value="">
          <Setter Property="Visibility" Value="Visible"/>
        </DataTrigger>
      </Style.Triggers>
    </Style>
  </TextBlock.Style>
</TextBlock>

1
एक आकर्षण की तरह काम करता है, और यदि आप DataTriggerनिम्नलिखित द्वारा प्रतिस्थापित करके IsFocused के लिए एक ट्रिगर जोड़ते हैं MultiDataTrigger, तो यह मेरी विनम्र राय में और भी बेहतर काम करता है:<MultiDataTrigger><MultiDataTrigger.Conditions><Condition Binding="{Binding IsFocused, ElementName=Textbox}" Value="false" /><Condition Binding="{Binding Text, ElementName=Textbox}" Value="" /></MultiDataTrigger.Conditions><MultiDataTrigger.Setters> <Setter Property="Visibility" Value="Visible"/></MultiDataTrigger.Setters></MultiDataTrigger>
अक्कू

9

बचाव के लिए संलग्न गुण:

public static class TextboxExtensions
{
    public static readonly DependencyProperty PlaceholderProperty = 
        DependencyProperty.RegisterAttached(
            "Placeholder", 
            typeof(string), 
            typeof(TextboxExtensions), 
            new PropertyMetadata(default(string), propertyChangedCallback: PlaceholderChanged)
            );

    private static void PlaceholderChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs args)
    {
        var tb = dependencyObject as TextBox;

        if (tb == null)
            return;

        tb.LostFocus -= OnLostFocus;
        tb.GotFocus -= OnGotFocus;

        if (args.NewValue != null)
        {
            tb.GotFocus += OnGotFocus;
            tb.LostFocus += OnLostFocus;
        }

        SetPlaceholder(dependencyObject, args.NewValue as string);

        if (!tb.IsFocused)
            ShowPlaceholder(tb);
    }

    private static void OnLostFocus(object sender, RoutedEventArgs routedEventArgs)
    {
        ShowPlaceholder(sender as TextBox);
    }

    private static void OnGotFocus(object sender, RoutedEventArgs routedEventArgs)
    {
        HidePlaceholder(sender as TextBox);
    }

    [AttachedPropertyBrowsableForType(typeof(TextBox))]
    public static void SetPlaceholder(DependencyObject element, string value)
    {
        element.SetValue(PlaceholderProperty, value);
    }

    [AttachedPropertyBrowsableForType(typeof(TextBox))]
    public static string GetPlaceholder(DependencyObject element)
    {
        return (string)element.GetValue(PlaceholderProperty);
    }

    private static void ShowPlaceholder(TextBox textBox)
    {
        if (string.IsNullOrWhiteSpace(textBox.Text))
        {
            textBox.Text = GetPlaceholder(textBox);
        }
    }

    private static void HidePlaceholder(TextBox textBox)
    {
        string placeholderText = GetPlaceholder(textBox);

        if (textBox.Text == placeholderText)
            textBox.Text = string.Empty;
    }
}

उपयोग:

<TextBox Text="hi" local:TextboxExtensions.Placeholder="Hello there"></TextBox>

यह अच्छा समाधान प्रदान करने के लिए धन्यवाद। हालाँकि, आपके समाधान का उपयोग करते हुए, परिणाम में) एक हल्के-भूरे रंग के एक के बजाय काले प्लेसहोल्डर पाठ में) आवेदन शुरू होने पर कोई प्लेसहोल्डर पाठ नहीं दिखाता (लेकिन ध्यान केंद्रित करने और फिर कहीं और ध्यान केंद्रित करने के बाद)। क्या आप इस संबंध में अपने उत्तर में सुधार करेंगे?
योदा

1
@ योदा अगर मैं इसे भूल नहीं जाता, जब तक कि मैं घर नहीं जाता, मैं इसे सुधारने पर ध्यान दूंगा, हाँ - क्यों नहीं
Dbl

1
फ़ोकस प्लेसहोल्डर फ़ोकस / फ़ोकसिंग फ़िक्स्ड तक।
सेर्गेई

1
@ योदा हाय, मुझे कोई आपत्ति नहीं है अगर यह सावधानी से किया जाता है और कुछ भी नहीं तोड़ता है।
सर्गेई

1
@ योदा, क्षमा करें, मैं थोड़ी देर के लिए WPF के साथ काम नहीं कर रहा था, मैंने इसे फिलहाल स्थापित नहीं किया है। आप नाम के PlaceholderColorसाथ एक और निर्भरता संपत्ति जोड़ सकते हैं typeof(Brush)। फिर textBox.Foregroundसंपत्ति को ShowPlaceholderविधि में बदलें और इसे वापस HidePlaceholderविधि में पुनर्स्थापित करें ।
सर्गेई

5

EM_SETCUEBANNERसंदेश का उपयोग करते समय संभवतः सबसे सरल है, एक चीज जो मुझे पसंद नहीं है वह यह है कि नियंत्रण प्राप्त होने पर प्लेसहोल्डर पाठ गायब हो जाता है। जब मैं फॉर्म भर रहा हूं तो वह मेरा एक पालतू जानवर है। मुझे यह याद करने के लिए क्लिक करना है कि फ़ील्ड क्या है।

तो यहाँ WinForms के लिए एक और समाधान है। यह Labelनियंत्रण के शीर्ष पर ओवरले करता है , जो उपयोगकर्ता के टाइप करने पर ही गायब हो जाता है।

यह निश्चित रूप से बुलेटप्रूफ नहीं है। यह किसी भी स्वीकार करता है Control, लेकिन मैं केवल एक के साथ परीक्षण किया है TextBox। इसे कुछ नियंत्रणों के साथ काम करने के लिए संशोधन की आवश्यकता हो सकती है। विधि उस Labelमामले में नियंत्रण लौटाती है जब आपको इसे किसी विशिष्ट मामले में थोड़ा संशोधित करने की आवश्यकता होती है, लेकिन इसकी आवश्यकता कभी नहीं हो सकती है।

इसे इस तरह उपयोग करें:

SetPlaceholder(txtSearch, "Type what you're searching for");

यहाँ विधि है:

/// <summary>
/// Sets placeholder text on a control (may not work for some controls)
/// </summary>
/// <param name="control">The control to set the placeholder on</param>
/// <param name="text">The text to display as the placeholder</param>
/// <returns>The newly-created placeholder Label</returns>
public static Label SetPlaceholder(Control control, string text) {
    var placeholder = new Label {
        Text = text,
        Font = control.Font,
        ForeColor = Color.Gray,
        BackColor = Color.Transparent,
        Cursor = Cursors.IBeam,
        Margin = Padding.Empty,

        //get rid of the left margin that all labels have
        FlatStyle = FlatStyle.System,
        AutoSize = false,

        //Leave 1px on the left so we can see the blinking cursor
        Size = new Size(control.Size.Width - 1, control.Size.Height),
        Location = new Point(control.Location.X + 1, control.Location.Y)
    };

    //when clicking on the label, pass focus to the control
    placeholder.Click += (sender, args) => { control.Focus(); };

    //disappear when the user starts typing
    control.TextChanged += (sender, args) => {
        placeholder.Visible = string.IsNullOrEmpty(control.Text);
    };

    //stay the same size/location as the control
    EventHandler updateSize = (sender, args) => {
        placeholder.Location = new Point(control.Location.X + 1, control.Location.Y);
        placeholder.Size = new Size(control.Size.Width - 1, control.Size.Height);
    };

    control.SizeChanged += updateSize;
    control.LocationChanged += updateSize;

    control.Parent.Controls.Add(placeholder);
    placeholder.BringToFront();

    return placeholder;
}

4

ExceptionLimeCat के उत्तर के आधार पर, एक सुधार:

Color farbe;
string ph = "Placeholder-Text";

private void Form1_Load(object sender, EventArgs e)
{
    farbe = myTxtbx.ForeColor;
    myTxtbx.GotFocus += RemoveText;
    myTxtbx.LostFocus += AddText;
    myTxtbx.Text = ph;
}


public void RemoveText(object sender, EventArgs e)
{
    myTxtbx.ForeColor = farbe;
    if (myTxtbx.Text == ph)
        myTxtbx.Text = "";
}

public void AddText(object sender, EventArgs e)
{
    if (String.IsNullOrWhiteSpace(myTxtbx.Text))
    {
        myTxtbx.ForeColor = Color.Gray;
        myTxtbx.Text = ph;
    }
}

3

आप डिफ़ॉल्ट प्राप्तTemplate कर सकते हैं , इसे ओवरले करके संशोधित कर सकते हैंTextBlock , और Styleट्रिगर्स को जोड़ने का उपयोग कर सकते हैं जो इसे छिपाते हैं और इसे सही स्थिति में दिखाते हैं।


3

इसका मतलब होगा कि आपके पास एक बटन होगा जो आपको एक कार्रवाई करने की अनुमति देता है, जैसे कि लॉग इन या कुछ। इससे पहले कि आप पाठ बॉक्स में भरा है अगर आप कार्रवाई की जाँच करें। अगर यह पाठ की जगह नहीं होगा

 private void button_Click(object sender, EventArgs e)
 {
     string textBoxText = textBox.Text;

     if (String.IsNullOrWhiteSpace(textBoxText))
     {
         textBox.Text = "Fill in the textbox";
     }
 }

 private void textBox_Enter(object sender, EventArgs e)
 {
     TextBox currentTextbox = sender as TextBox;
     if (currentTextbox.Text == "Fill in the textbox")
     {
         currentTextbox.Text = "";
     }
 }

यह एक प्रकार का पनीर है, लेकिन आप जो मूल्य दे रहे हैं उसके लिए पाठ की जांच करना सबसे अच्छा है जो मैं atm कर सकता हूं, बेहतर समाधान प्राप्त करने के लिए c # पर अच्छा नहीं।


2
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;

namespace App_name
{
   public class CustomTextBox : TextBox
    {
        private string Text_ = "";
        public CustomTextBox() : base()
        {}

        public string setHint
        {
            get { return Text_; }
            set { Text_ = value; }
        }
        protected override void OnGotFocus(RoutedEventArgs e)
        {
            base.OnGotFocus(e);
            if (Text_.Equals(this.Text))
                this.Clear();
        }
        protected override void OnLostFocus(RoutedEventArgs e)
        {
            base.OnLostFocus(e);
            if (String.IsNullOrWhiteSpace(this.Text))
                this.Text = Text_;
        }
    }
}
>    xmlns:local="clr-namespace:app_name"
>  <local:CustomTextBox
>                 x:Name="id_number_txt"
>                 Width="240px"
>                 Height="auto"/>

कृपया अपने उत्तर को कोड का एक गुच्छा डंप करने के बजाय अपने उत्तर में बताएं।
निधि मोनिका का मुकदमा

1

मैं एक ऐसी विधि के साथ आया जो मेरे लिए काम करती है, लेकिन केवल इसलिए कि मैं अपने प्लेसहोल्डर के रूप में टेक्स्टबॉक्स नाम का उपयोग करने के लिए तैयार था। निचे देखो।

public TextBox employee = new TextBox();

private void InitializeHomeComponent()
{
    //
    //employee
    //
    this.employee.Name = "Caller Name";
    this.employee.Text = "Caller Name";
    this.employee.BackColor = System.Drawing.SystemColors.InactiveBorder;
    this.employee.Location = new System.Drawing.Point(5, 160);
    this.employee.Size = new System.Drawing.Size(190, 30);
    this.employee.TabStop = false;
    this.Controls.Add(employee);
    // I loop through all of my textboxes giving them the same function
    foreach (Control C in this.Controls)
    {
        if (C.GetType() == typeof(System.Windows.Forms.TextBox))
        {
            C.GotFocus += g_GotFocus;
            C.LostFocus += g_LostFocus;
        }
     }
 }

    private void g_GotFocus(object sender, EventArgs e)
    {
        var tbox = sender as TextBox;
        tbox.Text = "";
    }

    private void g_LostFocus(object sender, EventArgs e)
    {
        var tbox = sender as TextBox;
        if (tbox.Text == "")
        {
            tbox.Text = tbox.Name;
        }
    }

1

यहाँ मैं @Kemal Karadag से प्रेरित इस समाधान के साथ आता हूँ।

मैंने देखा कि यहाँ पर तैनात हर समाधान फोकस पर निर्भर है,

जबकि मैं चाहता था कि मेरा प्लेसहोल्डर Google क्रोम में एक मानक HTML प्लेसहोल्डर का सटीक क्लोन हो।

बॉक्स केंद्रित होने पर प्लेसहोल्डर को छिपाने / दिखाने के बजाय,

मैं बॉक्स के पाठ की लंबाई के आधार पर प्लेसहोल्डर को छिपाता / दिखाता हूं:

यदि बॉक्स खाली है, तो प्लेसहोल्डर दिखाया गया है, और यदि आप बॉक्स में टाइप करते हैं, तो प्लेसहोल्डर गायब हो जाता है।

जैसा कि यह एक मानक टेक्स्टबॉक्स से विरासत में मिला है, आप इसे अपने टूलबॉक्स में पा सकते हैं!

using System;
using System.Drawing;
using System.Windows.Forms;

public class PlaceHolderTextBox : TextBox
{
    private bool isPlaceHolder = true;
    private string placeHolderText;

    public string PlaceHolderText
    {
        get { return placeHolderText; }
        set
        {
            placeHolderText = value;
            SetPlaceholder();
        }
    }

    public PlaceHolderTextBox()
    {
        TextChanged += OnTextChanged;
    }

    private void SetPlaceholder()
    {
        if (!isPlaceHolder)
        {
            this.Text = placeHolderText;
            this.ForeColor = Color.Gray;
            isPlaceHolder = true;
        }
    }

    private void RemovePlaceHolder()
    {
        if (isPlaceHolder)
        {
            this.Text = this.Text[0].ToString(); // Remove placeHolder text, but keep the character we just entered
            this.Select(1, 0); // Place the caret after the character we just entered
            this.ForeColor = System.Drawing.SystemColors.WindowText;
            isPlaceHolder = false;
        }
    }

    private void OnTextChanged(object sender, EventArgs e)
    {
        if (this.Text.Length == 0)
        {
            SetPlaceholder();
        }
        else
        {
            RemovePlaceHolder();
        }
    }
}

0

निम्नलिखित कोड का प्रयास करें:

<TextBox x:Name="InvoiceDate" Text="" Width="300"  TextAlignment="Left" Height="30" Grid.Row="0" Grid.Column="3" Grid.ColumnSpan="2" />
                    <TextBlock IsHitTestVisible="False" Text="Men att läsa" Width="300"  TextAlignment="Left" Height="30" Grid.Row="0" Grid.Column="3" Grid.ColumnSpan="2" Padding="5, 5, 5, 5"  Foreground="LightGray">
                        <TextBlock.Style>
                            <Style TargetType="{x:Type TextBlock}">
                                <Setter Property="Visibility" Value="Collapsed"/>
                                <Style.Triggers>
                                    <DataTrigger Binding="{Binding Text, ElementName=InvoiceDate}" Value="">
                                        <Setter Property="Visibility" Value="Visible"/>
                                    </DataTrigger>
                                    <DataTrigger Binding="{Binding ElementName=InvoiceDate, Path=IsFocused}" Value="True">
                                        <Setter Property="Visibility" Value="Collapsed"/>
                                    </DataTrigger>

                                </Style.Triggers>
                            </Style>
                        </TextBlock.Style>
                    </TextBlock>


0

आप यह भी कर सकते हैं कि जब माउस क्लिक करता है, तो मान लीजिए कि आपका प्लेसहोल्डर टेक्स्ट "User_Name" है

 private void textBox1_MouseClick(object sender, MouseEventArgs e)
 {
     if(textBox1.Text == "User_Name")
          textBox1.Text = "";
 }

0
    public void Initialize()
    {
        SetPlaceHolder(loginTextBox, " Логин ");
        SetPlaceHolder(passwordTextBox, " Пароль ");
    }

    public void SetPlaceHolder(Control control, string PlaceHolderText)
    {
        control.Text = PlaceHolderText;
        control.GotFocus += delegate(object sender, EventArgs args) {
            if (control.Text == PlaceHolderText)
            {
                control.Text = "";
            }
        };
        control.LostFocus += delegate(object sender, EventArgs args){
            if (control.Text.Length == 0)
            {
                control.Text = PlaceHolderText;
            }
        };
    }

5
सवाल पहले से ही हल है, इस जवाब के अतिरिक्त मूल्य का उपयोग कर क्या? सभी को जोड़ने का कोई स्पष्टीकरण नहीं है, इसे समझाने की कोशिश करें।
जनक

0

एक टेक्स्ट बॉक्स की .Text संपत्ति का उपयोग करने के बजाय, मैंने प्लेसहोल्डर के साथ एक टेक्स्टब्लॉक ओवरले किया। मैं एक .Text संपत्ति का उपयोग नहीं कर सका क्योंकि यह एक ईवेंट में बाँधा गया था।

XAML:

<Canvas Name="placeHolderCanvas">
    <TextBox  AcceptsReturn="True" Name="txtAddress" Height="50" Width="{Binding ActualWidth, ElementName=placeHolderCanvas}"
              Tag="Please enter your address"/>
</Canvas>

VB.NET

Public Shared Sub InitPlaceholder(canvas As Canvas)
    Dim txt As TextBox = canvas.Children.OfType(Of TextBox).First()
    Dim placeHolderLabel = New TextBlock() With {.Text = txt.Tag,
                                                 .Foreground = New SolidColorBrush(Color.FromRgb(&H77, &H77, &H77)),
                                                 .IsHitTestVisible = False}
    Canvas.SetLeft(placeHolderLabel, 3)
    Canvas.SetTop(placeHolderLabel, 1)
    canvas.Children.Add(placeHolderLabel)
    AddHandler txt.TextChanged, Sub() placeHolderLabel.Visibility = If(txt.Text = "", Visibility.Visible, Visibility.Hidden)
End Sub

परिणाम: यहाँ छवि विवरण दर्ज करें


0

आप भी इस तरह से आजमा सकते हैं ।।

फ़ंक्शन को कॉल करें

TextboxPlaceHolder(this.textBox1, "YourPlaceHolder");

इस फ़ंक्शन को लिखें

private void TextboxPlaceHolder(Control control, string PlaceHolderText)
{
        control.Text = PlaceHolderText;
        control.GotFocus += delegate (object sender, EventArgs args)
        {
            if (cusmode == false)
            {
                control.Text = control.Text == PlaceHolderText ? string.Empty : control.Text;
                //IF Focus TextBox forecolor Black
                control.ForeColor = Color.Black;
            }
        };

        control.LostFocus += delegate (object sender, EventArgs args)
        {
            if (string.IsNullOrWhiteSpace(control.Text) == true)
            {
                control.Text = PlaceHolderText;
                //If not focus TextBox forecolor to gray
                control.ForeColor = Color.Gray;
            }

        };
}

0

बेहतर समाधान हैं, लेकिन सबसे आसान समाधान यहां है: टेक्स्ट बॉक्स को अपनी वांछित स्ट्रिंग पर सेट करें फिर एक फ़ंक्शन बनाएं जो पाठ को हटाता है, उस फ़ंक्शन को टेक्स्टबॉक्स पर फायर करें फोकस इवेंट


0

मैंने एक पुन: प्रयोज्य कस्टम नियंत्रण लिखा है, हो सकता है कि यह किसी ऐसे व्यक्ति की मदद कर सकता है जिसे अपने प्रोजेक्ट में कई प्लेसहोल्डर टेक्स्टबॉक्स लागू करने की आवश्यकता है।
यहाँ एक उदाहरण के कार्यान्वयन के साथ कस्टम वर्ग है, आप वीएस का उपयोग करके एक नई winforms परियोजना पर इस कोड को चिपकाकर आसानी से परीक्षण कर सकते हैं:

namespace reusebleplaceholdertextbox
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            // implementation
            CustomPlaceHolderTextbox myCustomTxt = new CustomPlaceHolderTextbox(
                "Please Write Text Here...", Color.Gray, new Font("ARIAL", 11, FontStyle.Italic)
                , Color.Black, new Font("ARIAL", 11, FontStyle.Regular)
                );

            myCustomTxt.Multiline = true;
            myCustomTxt.Size = new Size(200, 50);
            myCustomTxt.Location = new Point(10, 10);
            this.Controls.Add(myCustomTxt);
        }
    }

    class CustomPlaceHolderTextbox : System.Windows.Forms.TextBox
    {
        public string PlaceholderText { get; private set; }
        public Color PlaceholderForeColor { get; private set; }
        public Font PlaceholderFont { get; private set; }

        public Color TextForeColor { get; private set; }
        public Font TextFont { get; private set; }

        public CustomPlaceHolderTextbox(string placeholdertext, Color placeholderforecolor,
            Font placeholderfont, Color textforecolor, Font textfont)
        {
            this.PlaceholderText = placeholdertext;
            this.PlaceholderFont = placeholderfont;
            this.PlaceholderForeColor = placeholderforecolor;
            this.PlaceholderFont = placeholderfont;
            this.TextForeColor = textforecolor;
            this.TextFont = textfont;
            if (!string.IsNullOrEmpty(this.PlaceholderText))
            {
                SetPlaceHolder(true);
                this.Update();
            }
        }

        private void SetPlaceHolder(bool addEvents)
        {
            if (addEvents)
            {  
                this.LostFocus += txt_lostfocus;
                this.Click += txt_click;
            }

            this.Text = PlaceholderText;
            this.ForeColor = PlaceholderForeColor;
            this.Font = PlaceholderFont;
        }

        private void txt_click(object sender, EventArgs e)
        {
            // IsNotFirstClickOnThis:
            // if there is no other control in the form
            // we will have a problem after the first load
            // because we dont other focusable control to move the focus to
            // and we dont want to remove the place holder
            // only on first time the place holder will be removed by click event
            RemovePlaceHolder();
            this.GotFocus += txt_focus;
            // no need for this event listener now
            this.Click -= txt_click;
        }

        private void RemovePlaceHolder()
        {
            this.Text = "";
            this.ForeColor = TextForeColor;
            this.Font = TextFont;
        }
        private void txt_lostfocus(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(this.Text))
            {
                // set placeholder again
                SetPlaceHolder(false);
            }
        }

        private void txt_focus(object sender, EventArgs e)
        {
            if (this.Text == PlaceholderText)
            {
                // IsNotFirstClickOnThis:
                // if there is no other control in the form
                // we will have a problem after the first load
                // because we dont other focusable control to move the focus to
                // and we dont want to remove the place holder
                RemovePlaceHolder();
            }
        }
    }
}

-1

WindowsForms TextBox नियंत्रण के लिए यहां बहुत प्रभावी समाधान । (एक्सएएमएल के बारे में निश्चित नहीं)।

यह मल्टीलाइन मोड में भी काम करेगा।

संभवतः इसे अन्य नियंत्रणों के लिए बढ़ाया जा सकता है, जैसे कॉम्बो बॉक्स नियंत्रण (चेक नहीं किया गया)


-1

एक जादू की तरह काम करता है।

public class WTextBox : TextBox
{
    private string _placeholder;


    [Category("Appearance")]
    public string Placeholder
    {
        get { return _placeholder; }
        set
        {
            _placeholder = value ?? string.Empty;
            Invalidate();
        }
    }

    public WTextBox()
    {
        _placeholder = string.Empty;
    }

    protected override void WndProc(ref Message m)
    {
        base.WndProc(ref m);

        if (m.Msg != 0xF || Focused || !string.IsNullOrEmpty(Text) || string.IsNullOrWhiteSpace(_placeholder))
        {
            return;
        }

        using (var g = CreateGraphics())
        {
            TextRenderer.DrawText(g, _placeholder, Font, ClientRectangle, SystemColors.GrayText, BackColor, TextFormatFlags.Left);
        }
    }
}

कृपया usings आवश्यक जोड़ने
Akku
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.