有沒有人用過 C# Applet 啊?
看起來用 C# 寫程式的人好像也並不多呢,
其實 Applet 也可以用 C# 來寫唷!
但是似乎目前只能用 IE 來開啟...
--
Here is an example:
<!-- test.html-->
<html>
<body>
<object classid="http:test.dll#test" width="200" height="150">
</object>
</body>
</html>
// test.cs
// csc /target:library test.cs
using System;
using System.Drawing;
using System.Windows.Forms;
public class test : Control
{
override protected void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.DrawEllipse(Pens.Red, ClientRectangle);
}
}
--
※ 發信站: 批踢踢實業坊(ptt.csie.ntu.edu.tw)
◆ From: 211.23.228.106
推
推 61.224.97.29 02/09, , 1F
推 61.224.97.29 02/09, 1F
推
推 211.23.228.106 02/10, , 2F
推 211.23.228.106 02/10, 2F
討論串 (同標題文章)
以下文章回應了本文:
完整討論串 (本文為第 1 之 5 篇):
C_Sharp 近期熱門文章
PTT數位生活區 即時熱門文章