vote up 1 vote down star

Hi All :)

I've created a winform in c#, I have 3 controls on the pages and another control and is created programmatically on one of the original controls. It's not rendering, so I Changed the background colours of the other controls (they are all bright colours to begin with) and when I run the app the changes have not taken place, I've steped through and can't see what I am doing wrong. Can anyone help?

Updates: * I have set the position, size and name but it does not make a difference. * Weirdly when I put it in the constructor with no arguments it works fine. It seems to be something to do with the code being in the second constructor (It does actually run the code in both constructors fine).

Thanks Sara :)

GameForm.cs

namespace Hangman
{
public partial class GameForm : Form, IGameView
{
    public GameForm()
    {
        InitializeComponent();
    }

    public GameForm(Game game) : this()
    {
        wordToGuessControl = new WordToGuessControl(game.Level);
        new GamePresenter(this, wordToGuessControl, hangmanControl);
    }
}

WordToGuessControl.cs

namespace Hangman.UserControls
{
    public partial class WordToGuessControl : UserControl, IWordToGuessView
    {

    private string _word;
    public WordToGuessControl()
    {
        InitializeComponent();
    }

    public WordToGuessControl(Level level) : this()
    {
        _word = GenerateWord(level);

        foreach (var character in _word)
        {
            var characterInWord = new RenderLetterControl();
            characterInWord.Location = new Point(0, 0);
            characterInWord.Name = character.ToString();
            characterInWord.Size = new Size(50,50);

            characterInWord.Text = "_";
            Controls.Add(characterInWord);

        } 
    }

    private string GenerateWord(Level level)
    {
        return new WordGenerator().GenerateWord(level);
    }
}

RenderLetterControl.cs

namespace Hangman.UserControls
{
public partial class RenderLetterControl : Label
{
    public RenderLetterControl()
    {
     InitializeComponent();
     Text = "_";
    }

    public RenderLetterControl(char character): this()
    {
        string characterGuessed = character.ToString();
    }
}
}
flag
1  
Without any code, it's pretty much impossible to answer this. Please try to post a short but complete program which demonstrates the problem. – Jon Skeet Nov 1 at 16:37
I'll echo Jon's comment, but it may be worth trying to clean the solution (manually if required) in case something has gone horribly wrong – Lee Nov 1 at 16:48
make sure your changes are being updated in the *.designer.cs file, without any code we can't really help you. – Stan R. Nov 1 at 16:55
okay, I'll try get some code to put up I'm doing MVP for the first time so it's all a bit confusing for me -sorry – Sara Nov 1 at 16:58
1  
Why is there a InitializeComponent() call at the end of public WordToGuessControl(Level level) : this()? That is bad. The this() call will call InitializeComponent(); no need to call it again (as it will reset everything). That may not solve your problem, but it jumped out to me. – Richard Morgan Nov 2 at 22:26
show 2 more comments

3 Answers

vote up 1 vote down

In the second constructor you have forgotten to call InitializeComponent();

link|flag
I tried that, no luck :( and also the first constructor is called ( this() ) – Sara Nov 2 at 22:06
Oh, sorry. I didn't see that! :-( – danbystrom Nov 3 at 7:20
vote up 0 vote down

It looks like you are adding RenderLetterControl controls to your WordToGuessControl, but you're never setting its size or location nor are you calling Control.Show to make it visible.

link|flag
vote up 0 vote down check

The WordToGuessControl was being created in the designer thus overriding the settings I had set in the code. I deleted the settings in the designer and dynamically created the control.

Thanks for all your help :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.