Update to EF6

This commit is contained in:
2014-07-14 17:38:14 -04:00
parent 7e3eedd844
commit 2f90035494
39 changed files with 2022 additions and 1944 deletions

View File

@@ -1,6 +1,5 @@
using System.Windows.Forms;
using FeedCenter.Properties;
using FeedCenter.Properties;
using System.Windows.Forms;
namespace FeedCenter
{
@@ -19,9 +18,9 @@ namespace FeedCenter
_notificationIcon.DoubleClick += HandleNotificationIconDoubleClick;
// Setup the menu
ContextMenuStrip contextMenuStrip = new ContextMenuStrip();
var contextMenuStrip = new ContextMenuStrip();
ToolStripMenuItem toolStripMenuItem = new ToolStripMenuItem(Resources.NotificationIconContextMenuLocked, null, HandleLockWindowClicked)
var toolStripMenuItem = new ToolStripMenuItem(Resources.NotificationIconContextMenuLocked, null, HandleLockWindowClicked)
{
Checked = Settings.Default.WindowLocked
};