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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T09:51:52+00:00 2026-05-15T09:51:52+00:00

I am displaying four records at a time, each having a check box. The

  • 0

I am displaying four records at a time, each having a check box.

The design is static. I would like to know a way to find out, if a check box clicked, then extract the name displayed in label to its left.

How would the code know what lies to its left?

That is, find out in which row the click occurred?

  • 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-15T09:51:53+00:00Added an answer on May 15, 2026 at 9:51 am
    public partial class FancyControl : Canvas
    {
        CheckBox myCheckBox;
        Label myLabel;
    
        public FancyControl() { }
        public FancyControl(CheckBox cb, Label l)
        {
            myCheckBox = cb;
            myLabel = l;
            Children.Add(myCheckBox);
            Children.Add(myLabel);
            //Formatting goes here
        }
    
        public string GetText()
        {
            return myLabel.Content.ToString();
        }
    
        public bool IsChecked()
        {
            return myCheckBox.IsChecked.Value;
        }
    }
    

    You will have to do the formatting on your own, but essentially with this you will create 4 “FancyControl”s and then with each one you can call the IsChecked() method and if true call the GetText() method.

    To create a FancyControl it would look like

    FancyControl fC = new FancyControl(checkBox1, label1);
    

    You would then add fC to your window or wherever it is supposed to go.

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

Sidebar

Related Questions

Displaying an object like this: Job.find(4).inspect results in: #<Job id: 4, job_date: 2010-10-22, address:
When displaying my DateTime values, I want them to be formatted like so: February
When displaying all articles of a specific month (given through the urls like this
When displaying a confirm box in javascript, there seems to be a delay after
While displaying a popover controller for a second time (after dismissing it and then
When displaying images on our website, we check if the file exists with a
While displaying the download status in a window, I have information like: 1) Total
I am displaying calendar using calendar control. Each date is displayed as Link button.
I'm displaying four data fields in a single column of a gridview using template
I am displaying my array objects in a pickerview. My array contains {one,two,three,four,five} When

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.