-3
所以在Lua,你可以做這樣的事情:C#改寫方法,像在Lua
local button = CreateButton()
button:SetText("hello world")
button:SetPos(150, 20)
button.DoClick = function()
print("This button said hello")
end
現在我想知道,如果你可以做這樣的事情在C# 目前我有
Button button = new Button();
button.setPos(150, 20);
// Need something like button.DoClick here
有沒有辦法在C#中完成我想要的功能?
您在關於如何處理點擊事件的'Button'文檔中找到了什麼,以及它如何無法回答您的問題? – Servy