Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 868107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:05:14+00:00 2026-05-15T10:05:14+00:00

I am trying to have a button on my C# windows form with a

  • 0

I am trying to have a button on my C# windows form with a name “Click Me”

It looks like the button text accepts only the words before the space and ignores the rest.
Having:
this.button_ClickMe.Text = “Click Me”;

Displays my button with text “Click” only.

Any idea why? and is there a work-around??

  • Ivar
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T10:05:14+00:00Added an answer on May 15, 2026 at 10:05 am

    I suspect the button is just too small. Make it bigger, or make set AutoSize = true (and place it within a container which has enough space, obviously).

    Here’s an example which works fine for me:

    using System;
    using System.Drawing;
    using System.Windows.Forms;
    
    public class Test
    {
        static void Main()
        {
            Form form = new Form {
                Controls = {
                    new Button { 
                        Text = "Click Me!", 
                        AutoSize = true,
                        Location = new Point(10, 30)
                    },
                }
            };
            Application.Run(form);
        }
    }
    

    (Admittedly this sample works even with AutoSize = false, so I suspect you’ve hard-coded the size somewhere… or your font is bigger. With longer text, it only works with AutoSize = true or a manually specified size.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my windows form I have a text box and a button, the text
I have other-window.xaml file and trying to open this from window.xaml on button click.
I am trying to have a button with an icon and text. The icon
I have a Windows Form window containing a FlowLayoutPanel, an OK Button, and a
I am trying to design a windows form application. Now I have written an
I have a windows form application where a user inputs their name (First and
I am trying to have the button to display to the right of the
I'm trying to have a button on the self.navigationItem.rightButton that toggles a segmented control
I am trying to have an onclick button print a check and run my
I am trying to have my interface dynamically generate a customized button when I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.