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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:35:42+00:00 2026-06-12T02:35:42+00:00

I need to set the width of a columndefinition within a datatemplate for a

  • 0

I need to set the width of a columndefinition within a datatemplate for a listview based on some computation which is done in code behind. So I got this:

<DataTemplate x:Key="dataTemplateForListview">
        <Border>
        <Grid>                
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="80" x:Name="gridColumnGraph" />
                <ColumnDefinition Width="*" />
            </Grid.ColumnDefinitions>
         ...
        </Grid>
       </Border>
</DataTemplate>

This Datatemplate is Bound to a ListView as the ItemTemplate. How do I get Access to “gridColumnGraph”? I need this access before the listview gets displayed – not when an Item is selected.

Thanks a lot!

  • 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-12T02:35:44+00:00Added an answer on June 12, 2026 at 2:35 am

    Use Databinding to bind the Columndefinition.Width-Property to one of your Properties in code-behind or your ViewModel.

    Make sure your ViewModel inherits from INotifiyPropertyChanged.
    Create a method which calls the PropertyChanged-Event:

    public event PropertyChangedEventHandler PropertyChanged;
    protected virtual void OnPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null)
        {
            var e = new PropertyChangedEventArgs(propertyName);
            handler(this, e);
        }
    }
    

    Create the property:

    private double _cdWidth;
    public double CDWidth
    {
        get { return _cdWidth; }
        set { _cdWidth= value; OnPropertyChanged("CDWidth"); }
    }
    

    Bind to the property:

    <ColumnDefinition Width={Binding Path=CDWidth}/>
    

    Set DataContext to ViewModel:

    this.DataContext = new ViewModel();
    

    Change CDWidth in codebehind:

    ViewModel vm = (ViewModel)this.DataContext;
    vm.CDWidth = 10;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to set the width of a table based on a Javascript variable
I need to set the width of <li> based on the maximum string length
I've got the following problem. I need to set a width of one div
I need to set a cookie with javascript which I'm doing this with the
I'm building a desktop (thick) Infopath 2010 form with code-behinds that need to set
I've got a layout with two editexts. I need to set the second one
I need to set width and height to a master page variable from a
I need to set the min width of content to 480px so that anyone
I need to set the table cell width as 300 as shown in http://jsfiddle.net/Lijo/Q3pa2/3/
I need to set width or max-width in order for margin:auto to work, right?

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.