Skip to content

Instantly share code, notes, and snippets.

@noqisofon
Created November 19, 2010 02:10
Show Gist options
  • Save noqisofon/706032 to your computer and use it in GitHub Desktop.
Save noqisofon/706032 to your computer and use it in GitHub Desktop.
フローティングウィンドウを表示するテストフォーム。
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