wpf listview怎么去掉最后一空列? 15
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏15(财富值+成长值)
4个回答
2015-09-22
展开全部
把最后一个<GridViewColumn >去掉就OK了,不知道是不是你要的意思
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-11-03
展开全部
把任意一列宽度设为*
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-11-03
展开全部
最后一个定义列 宽度 width=*
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private void listview_SizeChanged(object sender, SizeChangedEventArgs e)
{
ListView listView = sender as ListView;
GridView gView = listView.View as GridView;
var workingWidth = listView.ActualWidth - 30; // take into account vertical scrollbar
var col1 = 0.14;
var col2 = 0.14;
var col3 = 0.14;
gView.Columns[0].Width = workingWidth * col1;
gView.Columns[1].Width = workingWidth * col2;
gView.Columns[2].Width = workingWidth * col3;
}
{
ListView listView = sender as ListView;
GridView gView = listView.View as GridView;
var workingWidth = listView.ActualWidth - 30; // take into account vertical scrollbar
var col1 = 0.14;
var col2 = 0.14;
var col3 = 0.14;
gView.Columns[0].Width = workingWidth * col1;
gView.Columns[1].Width = workingWidth * col2;
gView.Columns[2].Width = workingWidth * col3;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询