c#GUI使用for循环创建多个button,如何知道点击的button的id,如何使得每次点击button后都切换成另一张图

publicTexture2DBlack;publicTexture2DWhite;voidOnGUI(){intwidth=30;intheight=30;intx=0... public Texture2D Black;

public Texture2D White;

void OnGUI() {

int width = 30;

int height = 30;

int x = 0,i = 0;

int y = 0;

//bool panDuan = false;

for (y = 0; y <= (height * 6); y += height,i++)
{

for (x = 0; x <= (width * 11); x += width * 2)
{
if (i % 2 == 0)
{

GUI.Button(new Rect(x, y, height, width), Black);
GUI.Button(new Rect(x + width, y, height, width), White);

}
else {

GUI.Button(new Rect(x, y, height, width), White);
GUI.Button(new Rect(x + width, y, height, width), Black);

}

}

}
展开
 我来答
帐号已注销
2017-05-22 · TA获得超过1134个赞
知道小有建树答主
回答量:742
采纳率:73%
帮助的人:417万
展开全部
在GUI.Button方法中创建button的时候给button绑定一个点击事件
private void Button_Click(object sender,EventArgs e)
{
Button button=sender as Button;

string id=button.Name;//这就是点击的那个Button的名字,也就是id

//在实现根据id切换图片的代码。。。

}
阳光的雷咩咩
2017-05-22 · TA获得超过1.4万个赞
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:7657万
展开全部
怎么全是你自定义的方法,比如GUI.Button
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式