bueno ok...
como estoy de mal genio aprovecho para decirte que estas como flojon con POO y debes practicar un poco más con c#.
El problema que tenias es porque tienes mal estructurado el codigo, le hice un pequeño parche. ahi te va:
<!--xc1--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>XCODE </td></tr><tr><td id='XCODE'><!--exc1-->
public ConfigGames()
{
InitializeComponent();
gameLevel.Add(radioButton1);
gameLevel.Add(radioButton2);
gameLevel.Add(radioButton3);
dirRaiz = Registry.CurrentUser.OpenSubKey(@"Software\GuyaniGames",true);
if(dirRaiz == null)
{
throw new Exception("No encuentro Clave principal en el registro");
}
else
{
string[] listaJuegos = dirRaiz.GetSubKeyNames();
if(listaJuegos.Length == 0)
{
listaDejuegos.Items.Add("No encuentro juegos");
listaDejuegos.Enabled = false;
}
listaDejuegos.BeginUpdate();
for(int index = 0; index < listaJuegos.Length;index++)
listaDejuegos.Items.Add(listaJuegos[index]);
listaDejuegos.EndUpdate();
}
}
#region Punto de entrada principal de la aplicación.
/// <summary>
/// Punto de entrada principal de la aplicación.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
try
{
Application.Run(new ConfigGames());
}
catch(Exception e)
{
MessageBox.Show(e.Message,"Error en el inicio",MessageBoxButtons.OK,MessageBoxIcon.Stop);
}
}
#endregion
<!--xc2--></td></tr></table><div class='postcolor'><!--exc2-->