mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
17 lines
390 B
C#
17 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LibEveryFileExplorer.UI
|
|
{
|
|
public class MainMenu : System.Windows.Forms.MainMenu {
|
|
private System.ComponentModel.IContainer iContainer;
|
|
public MainMenu(System.ComponentModel.IContainer iContainer)
|
|
{
|
|
// TODO: Complete member initialization
|
|
this.iContainer = iContainer;
|
|
}
|
|
}
|
|
}
|