Skip to content

Commit

Permalink
Add UI for xrPostprocessEditor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 19, 2014
1 parent 15ca8c8 commit d9a1487
Show file tree
Hide file tree
Showing 8 changed files with 1,389 additions and 56 deletions.
220 changes: 220 additions & 0 deletions src/editors/xrPostprocessEditor/Dialogs/KeyFrameBox.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions src/editors/xrPostprocessEditor/Dialogs/KeyFrameBox.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace xrPostprocessEditor
{
public partial class KeyFrameBox : UserControl
{
public event EventHandler SelectedIndexChanged;
public event EventHandler Add;
public event EventHandler Remove;
public event EventHandler Clear;

public KeyFrameBox()
{
InitializeComponent();
}

private void lbKeyFrames_SelectedIndexChanged(object sender, EventArgs e)
{

}

private void btnAdd_Click(object sender, EventArgs e)
{

}

private void btnRemove_Click(object sender, EventArgs e)
{

}

private void btnClear_Click(object sender, EventArgs e)
{

}

//public string SelectedItem { get {return lbPointList.Se} set; }
}
}
Loading

0 comments on commit d9a1487

Please sign in to comment.