gpt4 book ai didi

c# - 如何避免得到负值?

转载 作者:太空宇宙 更新时间:2023-11-03 17:58:11 24 4
gpt4 key购买 nike

我需要能够避免获得负值。调整窗口浏览器的大小但不达到负值时,我需要收缩数据网格,以免出错。那可能吗?先感谢您。

这是我的代码:

public SilverlightResizeTest() 
{
InitializeComponent();
// Set the height for the DataGrid when the browser window changes size
App.Current.Host.Content.Resized += new System.EventHandler(Content_Resized);

// Set the initial height for the DataGrid
double x = App.Current.Host.Content.ActualHeight;
if (x != 0)
{
DataGrid.Height = (x - 485.0);
}
}

void Content_Resized(object sender, System.EventArgs e)
{
// Set the height for the DataGrid when the browser window changes size
double x = App.Current.Host.Content.ActualHeight;
if (x != 0)
{
DataGrid.Height = (x - 485.0);
}
}

最佳答案

DataGrid.Height = Math.Max(0.0, x - 485.0);

关于c# - 如何避免得到负值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5953217/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com