Skip to content

Commit

Permalink
Added TMDb logo resources to view account application.
Browse files Browse the repository at this point in the history
Implemented tmdb logo display to loginDialog, ViewAccount & loadingDialog.
Implemented a new login dialog to view account application.
Implemented favorite & watch buttons to viewMediaDialog.
Modified home & search image poster display.
  • Loading branch information
tommojphillips committed Feb 2, 2020
1 parent d12ccef commit 6a72256
Show file tree
Hide file tree
Showing 14 changed files with 938 additions and 183 deletions.
27 changes: 23 additions & 4 deletions Programs/View Account/LoadingDialog.Designer.cs

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

229 changes: 229 additions & 0 deletions Programs/View Account/LoginDialog.Designer.cs

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

34 changes: 34 additions & 0 deletions Programs/View Account/LoginDialog.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace View_Account
{
public partial class LoginDialog : Form
{
public string username
{
get
{
return this.username_textBox.Text;
}
}
public string password
{
get
{
return this.password_textBox.Text;
}
}
public LoginDialog()
{
InitializeComponent();
}
}
}

0 comments on commit 6a72256

Please sign in to comment.