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

  • SEARCH
  • Home
  • 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

I have a big red button and I'm trying to use javascript to perform
In trying to solve the ajax back button problem I have found the Really
I'm trying to create a custom control - a button - which will have
I'm trying to have text spans pop up on a hover pseudo-class for different
I'm trying to do a custom button to my form (which has FormBorderStyle =
I'm trying to submit a form by assigning submit() to a click handler in
I am trying to have a logout page where is displays a messages and
I'm trying to have my Struts2 app redirect to a generated URL. In this
I'm trying to have a new layer appear above existing content on my site
I am trying to have one one layer, and center images within. I.E., if

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.