การเพิ่มข้อความตัวยึดตำแหน่งลงในกล่องข้อความ


147

ฉันกำลังมองหาวิธีเพิ่มข้อความตัวยึดตำแหน่งในกล่องข้อความอย่างที่คุณสามารถทำได้ด้วยกล่องข้อความใน html5

คือถ้ากล่องข้อความไม่มีข้อความก็จะเพิ่มข้อความEnter some text hereเมื่อผู้ใช้คลิกที่ข้อความตัวยึดจะหายไปและอนุญาตให้ผู้ใช้ป้อนข้อความของตัวเองและถ้ากล่องข้อความหมดโฟกัสและยังไม่มีข้อความตัวยึดตำแหน่งคือ เพิ่มกลับไปที่กล่องข้อความ


4
อย่าใช้คุณสมบัติข้อความสำหรับข้อความตัวยึดตำแหน่ง มันจะรบกวนการผูกพัน ใช้ AdornerDecorator ( msdn.microsoft.com/en-us/library/… )
Pavel Voronin


5
เพียง FYI - ลายน้ำ aka ข้อความคำใบ้ aka ข้อความตัวยึด aka แบนเนอร์คิว ข้อกำหนดทั้งหมดเหล่านี้มีเจตนาตรงกัน
RBT

คำตอบ:


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 บางประเภทที่สามารถใช้เพื่อสร้างตัวยึดตำแหน่ง ขอบคุณสำหรับความช่วยเหลือของคุณ
Boardy

1
ฉันหวังว่าจะหาวิธีแก้ไขที่จะเก็บข้อความตัวยึดไว้ในกล่องข้อความจนกว่าผู้ใช้จะป้อนข้อความ ดูเหมือนว่าจะทำงานได้ดีขึ้น
ผู้ใช้ DROP TABLE

6
วิธีนี้จะใช้งานได้ แต่ถ้าค่ากล่องข้อความถูกผูกไว้กับแหล่งที่มาคุณอาจมีปัญหา
Pavel Voronin

1
นี่เป็นวิธีแก้ปัญหาที่ง่ายดีมีเพียงสิ่งเดียวคือแม้ว่าหลังจากป้อนข้อความแล้วหากผู้ใช้คลิกบนกล่องข้อความอีกครั้ง (เช่นเพื่อเพิ่มข้อความเพิ่มเติมหรือลบอักขระบางตัว) กล่องข้อความทั้งหมดจะสูญเสียค่าที่ป้อน
Bibaswann Bandyopadhyay

2
RemoveTextและAddTextวิธีการที่ควรจะpublic voidหายไปเป็นโมฆะ และอย่างที่ @BibaswannBandyopadhyay ได้กล่าวแล้วRemoveTextวิธีการอาจเป็นเช่นนี้:if (myTxtbx.Text == "Enter text here...") {myTxtbx.Text = "";}
KaKa

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
Gábor Plesz

1
@Rob วางไว้ในพจนานุกรมทรัพยากร Window.Resources ฯลฯ
Brian

6
สำหรับปัญหาการโฟกัสให้เพิ่มสิ่งนี้: <ControlTemplate.Triggers> <Trigger Property="IsFocused" Value="True"> <Setter Property="FocusManager.FocusedElement" TargetName="textSource" Value="{Binding RelativeSource={RelativeSource Self}}" /> </Trigger> </ControlTemplate.Triggers>
Cihan Yakar

1
ฉันจะตรึงTextWrapping="wrap"แท็ก TextBox ทั้งสองไว้ใน Style ในกรณีที่คุณต้องการทำ TextBox หลายบรรทัดพร้อมข้อความ Placeholder เหมือนที่ฉันทำ
jpcguy89

1
@Sachin ฉันได้แก้ไขคุณสมบัติ MaxLenght ของฉันแล้ว ปัญหาคือว่าหนึ่งช่องข้อความถูกแทนที่ด้วย 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

แทนที่จะจัดการโฟกัสเข้าและออกจากเหตุการณ์เพื่อกำหนดและลบข้อความตัวยึดมันเป็นไปได้ที่จะใช้ฟังก์ชัน Windows SendMessage เพื่อส่ง EM_SETCUEBANNERข้อความไปยังกล่องข้อความของเราเพื่อทำงานให้เรา

สามารถทำได้ด้วยสองขั้นตอนง่าย ๆ ก่อนอื่นเราต้องเปิดเผยSendMessageฟังก์ชั่นของWindows

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_Load เร็วเกินไปฉันต้องรอจนกว่า Form_Shown ก่อนที่มันจะทำงาน
Jay Croghan

สิ่งเดียวที่ฉันเกลียดเกี่ยวกับสิ่งนี้คือข้อความจะหายไปทันทีที่ตัวควบคุมได้รับการโฟกัสซึ่งหมายความว่าถ้าคุณไม่ได้ตามที่พูด (และสำคัญ) คุณต้องคลิกเพื่อดูข้อความตัวยึดอีกครั้ง . ฉันเพิ่มคำตอบอื่นเพื่อเพิ่มตัวแทนที่หายไปหลังจากผู้ใช้เริ่มพิมพ์
Gabriel Luci

19

เพิ่มคลาสนี้โครงการของคุณและสร้างโซลูชันของคุณ คลิกที่กล่องเครื่องมือในสตูดิโอภาพคุณจะเห็นส่วนประกอบกล่องข้อความใหม่ชื่อ PlaceholderTextBox ลบกล่องข้อความปัจจุบันของคุณในแบบฟอร์มการออกแบบและแทนที่ด้วย 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คุณสมบัติชั่วคราว
Roland Illig

1
ทางออกที่ดีฉันชอบมัน ฉันจะเพิ่มการใช้งานเหล่านี้ที่ด้านบนของชั้นเรียนเพื่อให้ทำงานได้: using System; using System.Drawing; using System.Windows.Forms;ขอบคุณสำหรับสิ่งนี้!
Eldoïr

18

นี่ไม่ใช่รหัสของฉัน แต่ฉันใช้มันมากและใช้งานได้อย่างสมบูรณ์แบบ ... XAML เท่านั้น

<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
ใช้งานได้อย่างมีเสน่ห์และหากคุณเพิ่มทริกเกอร์ให้ IsFocused โดยแทนที่DataTriggerสิ่งต่อไปนี้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>
Akku

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>

ขอบคุณที่ให้บริการโซลูชั่นที่ดีนี้ อย่างไรก็ตามการใช้โซลูชันของคุณส่งผลให้ a) ข้อความตัวยึดสีดำแทนสีเทาอ่อนและ b) ไม่แสดงข้อความตัวยึดตำแหน่งเมื่อเริ่มต้นแอปพลิเคชัน (แต่หลังจากโฟกัสแล้วตั้งโฟกัสที่อื่น) คุณต้องการปรับปรุงคำตอบของคุณในเรื่องนี้หรือไม่?
Yoda

1
@Yoda หากฉันจัดการไม่ให้ลืมจนกว่าฉันจะกลับถึงบ้านฉันจะมองไปที่การปรับปรุงใช่ - ทำไมไม่
Dbl

1
ตัวยึดที่ว่างเปล่าจนกว่าจะโฟกัส / ไม่โฟกัส
Sergey

1
@Yoda สวัสดีฉันไม่รังเกียจหรอกถ้ามันทำอย่างระมัดระวังและไม่ทำลายอะไรเลย
Sergey

1
@Yoda ขออภัยฉันไม่ได้ทำงานกับ WPF มาระยะหนึ่งแล้วฉันยังไม่ได้ติดตั้งเลย คุณสามารถเพิ่มคุณสมบัติการพึ่งพาอีกคนหนึ่งชื่อด้วยPlaceholderColor typeof(Brush)จากนั้นเปลี่ยนtextBox.ForegroundคุณสมบัติในShowPlaceholderเมธอดและเรียกคืนในHidePlaceholderเมธอด
Sergey

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

นี่หมายความว่าคุณมีปุ่มที่อนุญาตให้คุณดำเนินการเช่นเข้าสู่ระบบหรืออะไรบางอย่าง ก่อนที่คุณจะดำเนินการคุณต้องตรวจสอบว่ากล่องข้อความถูกกรอกหรือไม่หากไม่ใช่จะเป็นการแทนที่ข้อความ

 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

ฉันสังเกตเห็นว่าทุกวิธีการโพสต์ที่นี่ขึ้นอยู่กับการมุ่งเน้น

ในขณะที่ฉันต้องการให้ตัวยึดตำแหน่งของฉันเป็นโคลนที่แน่นอนของตัวยึด HTML มาตรฐานใน Google Chrome

แทนที่จะซ่อน / แสดงตัวยึดตำแหน่งเมื่อกล่องโฟกัส

ฉันซ่อน / แสดงตัวยึดตำแหน่งโดยขึ้นอยู่กับความยาวของข้อความ:

หากกล่องว่างเปล่าตัวยึดตำแหน่งจะปรากฏขึ้นและหากคุณพิมพ์ลงในกล่องตัวยึดตำแหน่งจะหายไป

เนื่องจากสืบทอดมาจากกล่องข้อความมาตรฐานคุณสามารถค้นหาได้ในกล่องเครื่องมือของคุณ!

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
คำถามได้ถูกแก้ไขแล้วอะไรคือสิ่งที่ใช้มูลค่าเพิ่มของคำตอบนี้? ไม่มีคำอธิบายเพิ่มทั้งหมดพยายามอธิบาย
Jannik

0

แทนที่จะใช้คุณสมบัติข้อความของกล่องข้อความฉันซ้อนทับ TextBlock ด้วยตัวยึดตำแหน่ง ฉันไม่สามารถใช้คุณสมบัติข้อความได้เนื่องจากสิ่งนี้ถูกผูกไว้กับกิจกรรม

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 ใหม่โดยใช้ VS:

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 (ไม่แน่ใจเกี่ยวกับ XAML)

สิ่งนี้จะทำงานในโหมด Multliline ด้วย

อาจขยายได้สำหรับการควบคุมอื่น ๆ เช่นการควบคุม ComboBox (ไม่ได้ตรวจสอบ)


-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);
        }
    }
}

โปรดเพิ่มการใช้ที่จำเป็น
Akku
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.