Skip to content

Proje kaynaklarının listbox içinde listelenip kullanılması için örnek proje.

Notifications You must be signed in to change notification settings

WildGenie/ResourceManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ResourceManager

Proje kaynaklarının listbox içinde listelenip kullanılması için örnek proje.

foreach (DictionaryEntry resourceEntry in Resources.ResourceManager.GetResourceSet(
                CultureInfo.CurrentUICulture, true, true))

Kodu ile projede bulunan tüm kaynaklar döndürülür.

listBox1.Items.Add(resourceEntry);

Komutu ile döndürülen kaynaklar liste kutusuna nesne olarak eklenir

listBox1.DisplayMember = "Key";

DictionaryEntry türünden türetilen nesnelerin isimleri Key özelliğinde bulunduğu için ekranda görünen tür bu şekilde tanımlanır.

object selectedItem = ((DictionaryEntry)listBox1.SelectedItem).Value;

Liste kutusunda seçilen nesnenin değeri gerekli kutudan çıkarma (unboxing, cast) yöntemi ile istenilen şekilde kullanılır.

Örnek proje görüntüsü:

Proje Goruntusu

Örnek proje kodları:

void Form1_Load(object sender, EventArgs e)
{
    listBox1.DisplayMember = "Key";
    foreach (DictionaryEntry resourceEntry in Resources.ResourceManager.GetResourceSet(
        CultureInfo.CurrentUICulture, true, true))
    {
        listBox1.Items.Add(resourceEntry);
    }
}

void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    object selectedItem = ((DictionaryEntry)listBox1.SelectedItem).Value;
    switch (selectedItem.GetType().Name)
    {
        case "Bitmap":
            pictureBox1.Image = (Image)((DictionaryEntry)listBox1.SelectedItem).Value;
            break;
        case "Icon":
            pictureBox1.Image = ((Icon)((DictionaryEntry)listBox1.SelectedItem).Value).ToBitmap();
            break;
        case "String":
            textBox1.Text = (string)selectedItem;
            break;
        case "UnmanagedMemoryStream":
            try
            {
                UnmanagedMemoryStream sound = (UnmanagedMemoryStream)selectedItem;
                SoundPlayer player = new SoundPlayer();
                sound.Position = 0;
                player.Stream = null;
                player.Stream = sound;
                player.Play();
            }
            catch
            {
                Console.Write("Wav dosyası çalınırken hata oluştu.");
            }

            break;
        default:
            textBox1.Text = string.Format("Bilinmeyen tür: {0}", selectedItem.GetType().Name);
            break;
    }
}

About

Proje kaynaklarının listbox içinde listelenip kullanılması için örnek proje.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages