Created
November 19, 2010 02:10
-
-
Save noqisofon/706032 to your computer and use it in GitHub Desktop.
フローティングウィンドウを表示するテストフォーム。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Text; | |
using System.Windows.Forms; | |
namespace groan.app.widgets { | |
using util; | |
/// <summary> | |
/// | |
/// </summary> | |
public partial class GroanForm : Form { | |
/// <summary> | |
/// | |
/// </summary> | |
public GroanForm() { | |
InitializeComponent(); | |
} | |
/// <summary> | |
/// | |
/// </summary> | |
/// <param name="sender"></param> | |
/// <param name="ergs"></param> | |
private void btnRaiseStick_Click(object sender, EventArgs ergs) { | |
Stick popup = this.manager_.enqueueStick( tbTitle.Text, tbFullText.Text ); | |
popup.Show(); | |
} | |
/// <summary> | |
/// | |
/// </summary> | |
private StickManager manager_ = new StickManager(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment