AnotherSc2Hack.Classes.FrontEnds.MainHandler.NewMainHandler.PluginsLoadImages(System.Windows.Forms.ListView)

Here are the examples of the csharp api class AnotherSc2Hack.Classes.FrontEnds.MainHandler.NewMainHandler.PluginsLoadImages(System.Windows.Forms.ListView) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: AnotherSc2Hack
Source File: NewMainHandler.cs
private void lstvPluginsAvailablePlugins_SelectedIndexChanged(object sender, EventArgs e)
        {
            var senda = ((ListView)sender);

            #region Exception handling

            if (senda.Items.Count <= 0)
                return;

            if (senda.SelectedItems.Count <= 0)
                return;

            if (senda.SelectedItems[0].Index >= senda.Items.Count)
                return;

            #endregion

            IPluginsSelectedPluginIndex = senda.SelectedItems[0].Index;

            PluginsLoadImages(senda);
        }