在代码中设置ColumnDefinitions [英] Setting ColumnDefinitions in code

查看:144
本文介绍了在代码中设置ColumnDefinitions的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否可以像在xaml文件中一样,在代码中将ColumnDefinition Width设置为*.尝试在代码中设置GridLength时,只有Auto有一个选项.

I'm wondering if there is a way to set a ColumnDefinition Width to * in code, like you can in the xaml file. When trying to set in code GridLength just has the Auto has an option.

<ColumnDefinition Width="*"/>

感谢您的帮助.

推荐答案

您将需要创建GridLength数据类型的实例并指定GridUnitType.Star

You will need to create an instance of the GridLength data type and specify GridUnitType.Star

col.Width = new GridLength(1, GridUnitType.Star);

这篇关于在代码中设置ColumnDefinitions的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆