关于command的用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于command的用法相关的知识,希望对你有一定的参考价值。

关于“command”的用法
例如这个句子
It is a painting that commanded a handsome price.
command是什么意思?

赢得了很好的价钱

command
KK: []
DJ: []
vt.
1. 命令[O2][+that]
I command that he go at once.
我命令他立即就去。
I command you to start at once.
我命令你立即动身。
2. 指挥,统率;控制
He was told to command his temper.
有人叫他控制脾气。
3. 博得,赢得
Honesty commands respect.
诚实博得尊敬。
4. 俯瞰,俯临
The hill commands the sea.
这座山俯临大海。
5. 拥有,掌握
vi.
1. 指挥;控制;命令
n.
1. 命令[C]
Who issued the command to fire?
谁下令开枪的?
2. 控制,控制权;指挥,指挥权[U]
He has a hundred men under his command.
他指挥一百个人。
3. 司令部,指挥部[C][G]
4. 掌握;运用能力[U][S1]
She has a good command of spoken English.
她的英语口语很熟练。
5. 【电脑】指令[C]
6. 视界;俯瞰[S]

参考资料:http://www.baidu.com/s?lm=0&si=&rn=10&ie=gb2312&ct=1048576&wd=command&tn=max2_cb

参考技术A Command 有多个解析,在这例句中是作动词用,意指
"应得,博得,值得"
To command respect -- 使人肃然起敬

It is a painting that commanded a handsome price.
这幅画价值不菲啊!
参考技术B 这是一幅值钱的画。

command:
To deserve and receive as due; exact:
应得,值得:适当地应受和接收;强求:
The troops' bravery commanded respect.
部队的勇敢值得尊敬本回答被提问者采纳
参考技术C 选B
在表示建议、命令、主张、目的和愿望等名词后面的同位语从句中谓语动词要求使用虚拟语气,其形式为:“should+动词原形”,句中的should可以省略。
还有其它一些这样用的名词:
resolution
决心,决议
pray
恳求
decision
决议
motion
提议
suggestion
建议
preference
选择
proposal
提议
advice
劝告
recommendation
推荐
desire
愿望
demand
要求
requirement
要求
order
命令
necessity
必要性
request
要求
idea
主意、想法
He
gave
orders
that
the
guests
(should)
be
hospitably
entertained.
他下令热情款待这些客人。
Our
teacher
gave
us
some
advice
how
we
(should)
use
the
computer.
老师给我们提出了一些如何使用电脑的建议。
如果对你有所帮助,请点击本页面中的“选为满意回答”按钮,谢谢!

2017-5-22 Repeater的Command用法

Repeater的Command用法
是Repeater控件的原生事件用法

Repeater里面如果循环控件,控件的ID是会被改变的
ItemCommand事件 - 任何控件执行提交都来触发这个事件
属性 - CommandName=""
属性 - CommandArgument="主键值"

ItemCreated - 绑定数据之前,创建行之后

ItemDataBound - 绑定数据之后,执行一遍

1.在要触发的事件中添加属性CommandName="";方便在后台代码中区分点击的事件

CommandArgument=‘<%#Eval("ids") %>‘   传递的参数,在后台代码通过e.CommandArgument;获取传递的参数

  后台代码:

技术分享
protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            List<Users> ulist = new UsersData().selectAll();
            Repeater1.DataSource = ulist;
            Repeater1.DataBind();
        }
        Repeater1.ItemCommand += Repeater1_ItemCommand;
    }

    void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
    {
        //触发修改要操作的
        if (e.CommandName == "update")
        {
            Label1.Text = "修改";

        }
        //触发删除要操作的
        else if(e.CommandName=="delete")
        {
            Label1.Text = "删除";
        }
    }
技术分享

 2.Repeater控件中:数据创建的时候执行的事件 ItemCreated,数据绑定的时候执行的事件 ItemDataBound

ItemCreated - 绑定数据之前,创建行之后      ItemDataBound - 绑定数据之后,执行一遍

用法:

技术分享
 protected void Page_Load(object sender, EventArgs e)
    {
        Repeater1.ItemCommand += Repeater1_ItemCommand;
        //数据创建的时候
        Repeater1.ItemCreated += Repeater1_ItemCreated;
        //数据绑定的时候
        Repeater1.ItemDataBound += Repeater1_ItemDataBound;
        if (!IsPostBack)
        {
            List<Users> ulist = new UsersData().selectAll();
            Repeater1.DataSource = ulist;
            Repeater1.DataBind();
        }
       
    }
    //数据在绑定的时候执行,如果性别为女的不显示
    void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        RepeaterItem ri = e.Item;
        Users u = ri.DataItem as Users;
        if (u.Sex == false)
        {
            ri.Visible = false;
        }
    }
技术分享




以上是关于关于command的用法的主要内容,如果未能解决你的问题,请参考以下文章

repeater的command事件用法

2017-5-22 Repeater的Command用法

python2.X中的commands模块的用法

shell 中| 用法

container中的command的使用

OLE DB Command transformation 用法