Skip to content

Commit

Permalink
Mugshot Names and Images
Browse files Browse the repository at this point in the history
  • Loading branch information
LuigiBlood committed Dec 29, 2017
1 parent 4aef8a3 commit 0762739
Show file tree
Hide file tree
Showing 23 changed files with 340 additions and 50 deletions.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/00.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/01.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/02.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/03.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/04.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/05.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/06.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/07.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/08.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/09.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/10.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/11.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/12.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/13.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/14.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/15.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SatellaWave/SatellaWave/Images/Mugshot/16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions SatellaWave/SatellaWave/Images/ResourceAccess.cs
@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SatellaWave
{
public class ResourceAccess
{
public static Bitmap[] mugshotImageList =
{
SatellaWave.Properties.Resources.Mugshot_00,
SatellaWave.Properties.Resources.Mugshot_01,
SatellaWave.Properties.Resources.Mugshot_02,
SatellaWave.Properties.Resources.Mugshot_03,
SatellaWave.Properties.Resources.Mugshot_04,
SatellaWave.Properties.Resources.Mugshot_05,
SatellaWave.Properties.Resources.Mugshot_06,
SatellaWave.Properties.Resources.Mugshot_07,
SatellaWave.Properties.Resources.Mugshot_08,
SatellaWave.Properties.Resources.Mugshot_09,
SatellaWave.Properties.Resources.Mugshot_0A,
SatellaWave.Properties.Resources.Mugshot_0B,
SatellaWave.Properties.Resources.Mugshot_0C,
SatellaWave.Properties.Resources.Mugshot_0D,
SatellaWave.Properties.Resources.Mugshot_0E,
SatellaWave.Properties.Resources.Mugshot_0F,
SatellaWave.Properties.Resources.Mugshot_10
};
}
}
52 changes: 33 additions & 19 deletions SatellaWave/SatellaWave/MainWindow.Designer.cs

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

5 changes: 5 additions & 0 deletions SatellaWave/SatellaWave/MainWindow.cs
Expand Up @@ -407,5 +407,10 @@ private void contextMenuStripFileMenu_Opening(object sender, CancelEventArgs e)
toolStripMenuItemAddIncludeFile.Enabled = !(treeViewChn.SelectedNode.Tag as DownloadFile).isItem;
}
}

private void comboBoxFolderMugshot_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBox_FolderMugshot.Image = ResourceAccess.mugshotImageList[comboBoxFolderMugshot.SelectedIndex];
}
}
}

0 comments on commit 0762739

Please sign in to comment.