[PR] この広告は3ヶ月以上更新がないため表示されています。
ホームページを更新後24時間以内に表示されなくなります。

オンライン C#フォームメーカーv0.97r  Firefox2/Safari3専用 ( Interface.js & jquery.jsのテスト )














































Design Mode
ObjectList
Form1.Designer.cs
Form1.cs & Program.cs
 Compile on the Command-Line:
gmcs Form1.cs Program.cs Form1.Designer.cs -r:System.Windows.Forms -r:System.Drawing -r:System.Data -out:Form1.exe -codepage:utf8

*Form1.exe ------- 生成されるアプリケーションファイル

*Form1.cs ------------- イベントハンドラやコード等(Partial Class for Forms)
*Form1.Designer.cs --フォームのレイアウト情報 (Partial Class for Forms)
*Program.cs ------------- Startup Program (Class: Program ) and Main

// --------------------------------------------------------
// Run Startup : Program.cs
//---------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace foobar
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}

// --------------------------------------------------------
// Form Program: Form1.cs
//---------------------------------------------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace foobar
{
// Form の継承
public partial class Form1 : Form
{
// コンストラクタ
public Form1()
{
InitializeComponent();
}

//-- イベントハンドラ --

}

}
// --------------------------------------------------------
// Form Design : Form1.Designer.cs
// --------------------------------------------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace foobar
{
partial class Form1
{
/// 必要なデザイナ変数。
private System.ComponentModel.IContainer components = null;

/// 使用中のリソースをすべてクリーンアップします。
protected override void Dispose(bool disposing){ if (disposing && (components != null)){ components.Dispose();} base.Dispose(disposing); }

#region Windows.Form ***************
private void InitializeComponent()
{
// form generate


// form setting


// form Controls Add
// ****************************

this.Name = "Form1";
this.Text = "Application window Title";
this.ResumeLayout(false);
this.PerformLayout();

}
#endregion

//set private
}
}
.
.
.
.
.
.
.
.
Original Sample
[+]テキスト編集
Strings:
[+]「選」要素の項目編集
- -
[+]メニュー要素の編集
- -
[+]イベントハンドラ設定
Event :

Click : コントロールClick時
DoubleClick:ダブルClick時
TextChanged : テキスト内容変化
[+]その他設定
-コンパイル時の設定-
生成アプリ名:
.exe
-タイトルバー文字列-

-コード全般-
NameSpace:
FormName:
[+]新規部品作成
選{List, Radi, Chk }
メニューバー要素有効
[+]コマンド
現在選択中のオブジェクトID:


[+]プロパティ
Position:
X: Y:
W: H:
Z: Tes :
Background-color:

Swatch: