我希望能夠爲我的界面使用不同的代表,如果按下等按鈕等。如何解析xml文件中的委託方法?
並且爲了使它容易,它將是很好能夠從XML加載按鈕。我已經擁有了它的設置是這樣的:
<EclipseButton name="button1" texkey="thumbnail" istodraw="True">
<position>
<x>10</x>
<y>10</y>
</position>
<width>64</width>
<height>64</height>
</EclipseButton>
但我想可以添加:
<IfPressed>
<![CDATA[
Console.WriteLine("The button is pressed");
]]>
</IfPressed>
,然後我可以將文本轉換在CDATA就好像它是一個lambda:
() => { Console.WriteLine("The button is pressed"); }
有沒有辦法讓這成爲可能?
請不要在「C#」前加上標題 - 這就是我們在這裏的標籤。 –
抱歉會想到這個。 – Spinno