限制产品的计数器

时间:2015-11-18 18:37:50

标签: c# android xamarin

我的应用程序中有产品计数器。

我想限制产品 - 0

现在,如果我有0并点击“减号”,则显示“-1”

我想将其限制为“0”

        plus.Click += delegate
        {
            counttext.Text = string.Format("{0}", ++count);
        };  
        minus.Click += delegate
        {
            counttext.Text = string.Format("{0}", --count);
        };  

2 个答案:

答案 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);
};