作者Action (雪...)
看板C_Sharp
标题有没有人用过 C# Applet 啊?
时间Sun Feb 9 17:57:40 2003
看起来用 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
1F:→ popcorny:试不出来...我有摆在iis上唷.... 推 61.224.97.29 02/09
2F:→ Action:有 compile 吗? .dll 是不是放同一个目录? 推 211.23.228.106 02/10