我的应用程序中有产品计数器。
我想限制产品 - 0
现在,如果我有0并点击“减号”,则显示“-1”
我想将其限制为“0”
plus.Click += delegate
{
counttext.Text = string.Format("{0}", ++count);
};
minus.Click += delegate
{
counttext.Text = string.Format("{0}", --count);
};
答案 0 :(得分:3)
尝试使用ternay operator为样本创建规则;
plus.Click += delegate
{
counttext.Text = string.Format("{0}", ++count);
};
minus.Click += delegate
{
counttext.Text = string.Format("{0}", count > 0 ? --count : 0);
};
答案 1 :(得分:2)
plus.Click += delegate
{
counttext.Text = string.Format("{0}", ++count);
};
minus.Click += delegate
{
counttext.Text = string.Format("{0}", count > 0 ? --count : 0);
};