Esempio n. 1
0
        public frmTagger()
        {
            InitializeComponent();


            Settings     = new Properties.Settings();
            txtPath.Text = Settings.LastPath;
            standardShortcuts.Checked = Settings.StandardShortcuts;
            ImageSize = Settings.ImageSize;

            Icons.IconSize   = Settings.IconSize;
            Icons.DropShadow = Settings.IconShadow;
            Icons.Move       = Settings.IconMove;

            Icons.Load();
            lst.TileSize = new Size(ImageSize, ImageSize);

            ChangeTagLayout(standardShortcuts.Checked);
        }
Esempio n. 2
0
        public void Draw(Graphics g, Rectangle bounds)
        {
            g.DrawImage(Bitmap, bounds);

            Icons.DrawAll(g, bounds, Tags);
        }