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 8306947
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:25:55+00:00 2026-06-08T18:25:55+00:00

I am newbie to Monotouch and have added the following code to my SingleViewApplication.

  • 0

I am newbie to Monotouch and have added the following code to my SingleViewApplication. And you can see my controller code below, where I am trying to change the background after click of the button.

public partial class FirstViewAppViewController : UIViewController
{
    public FirstViewAppViewController () : base ("FirstViewAppViewController", null)
    {
    }

    UIButton buttonChangeColor;
    private void CreateButton (){
      RectangleF viewFrame = this.View.Frame;
      RectangleF buttonFrame = new RectangleF (10f, viewFrame.Bottom -  
        200f, viewFrame.Width - 20f, 50f);
      this.buttonChangeColor = UIButton.FromType  
        (UIButtonType.RoundedRect);
      this.buttonChangeColor.Frame = buttonFrame;
      this.buttonChangeColor.SetTitle ("Tap to change view color",  
        UIControlState.Normal);
      this.buttonChangeColor.SetTitle ("Changing color...",  
        UIControlState.Highlighted);
      this.buttonChangeColor.TouchUpInside +=  
        this.buttonChangeColor_TouchUpInside;
      this.View.AddSubview (this.buttonChangeColor);
    }

    bool isRed;
    private void buttonChangeColor_TouchUpInside (object sender, EventArgs e){
      if (this.isRed) {
        this.View.BackgroundColor = UIColor.LightGray;
        this.isRed = false;
      } else {
        this.View.BackgroundColor = UIColor.Red;
        this.isRed = true; 
      }
    }

    public override void ViewDidLoad ()
    {
        base.ViewDidLoad ();

        this.CreateButton();

        // Perform any additional setup after loading the view, typically from a nib.
    }

It looks fine to me, but I dont see the background color changing in simulator.

Any ideas? Thanks.

  • 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-06-08T18:25:56+00:00Added an answer on June 8, 2026 at 6:25 pm

    I am also face this problem but i solve this issue hope this code is help you

    public static class SwapUIButtonColor
    {
        #region prop
        public static UIButton PreviousButton {
        get
        {
            return _previousButton
        }
        set
        {
            _previousButton = value;
        }
    }
    public static UIButton CurrentButton 
    {
        get
        {
            return _currentButton;
        }
        set
        {
            _currentButton = value;
        }
    }
    public static bool SwapColor (UIButton sender, bool isPrevBakGraound)
    {
        if (isPrevBakGraound == false)
        {
            InitApplyColorBorder (sender);
            SwapUIButtonColor.PreviousButton = sender;
            return true;
        }
        else
        {
            if (SwapUIButtonColor.PreviousButton != sender)
            {
                InitApplyColorBorder (sender);
                SwapUIButtonColor.CurrentButton = PreviousButton;
                PreviousButton = sender;
                SwapUIButtonColor.CurrentButton.Layer.BorderColor = (UIColor.Black).CGColor;
                SwapUIButtonColor.CurrentButton.Layer.BorderWidth = 0f;
                SwapUIButtonColor.CurrentButton.Layer.CornerRadius = 0f;    
            }
            else if (SwapUIButtonColor.PreviousButton == sender)
            {
                InitApplyColorBorder (sender);
                SwapUIButtonColor.PreviousButton = sender;  
            }
            return true;
        }
    }
    static void InitApplyColorBorder (UIButton sender)
    {
        sender.Layer.BorderColor = (UIColor.Red).CGColor;
        sender.Layer.BorderWidth = 1.0f;
        sender.Layer.CornerRadius = 10f;
    }
    

    Also from ViewDidload Method Call this above method on UIButton Click events

    private bool isPrevBakGraound = false;  
    isPrevBakGraound = SwapUIButtonColor.SwapColor (btnReset, isPrevBakGraound);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

newbie question in css: I have the following style defined: TABLE.tabulardata th { font:
Newbie still learning, been trying to search and hack code together for hours now,
Newbie question i have following function: function isadult($description) { $bad=/*comma separated bad words*/; $bad=explode(,,$bad);
Newbie to LINQ, and trying to write the following query... select f.Section_ID, f.Page_ID, f.SortOrder,
Newbie Warning I have a simple but vexing problem trying to disable an NSButton.
newbie here, so thanks in advance for help! I have a Wordpress site with
Newbie question... The objective: I intend to have an HTML text input field as
Newbie question. I have Django models that look like this: class Video(models.Model): uploaded_by =
Newbie question since I'm not up to speed using maven at all. I'm trying
Newbie here, I have a struct for a word, which contains a char array

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.