mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 20:12:40 +00:00
yup
This commit is contained in:
33
Online Gokkantoor/Gui/mainForm.aspx.cs
Normal file
33
Online Gokkantoor/Gui/mainForm.aspx.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using Logic;
|
||||
|
||||
namespace Gui
|
||||
{
|
||||
|
||||
public partial class mainForm : System.Web.UI.Page
|
||||
{
|
||||
LogicLayer logic;
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
logic = (LogicLayer)System.Web.HttpContext.Current.Application["logic"];
|
||||
listGames.DataSource = logic.games;
|
||||
listGames.DataBind();
|
||||
}
|
||||
}
|
||||
|
||||
public void btnAddBalance_Click(object o, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void placeBet_Click(object o, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user