Exemple #1
0
 private void SaveCache(NewCustomShortcutFormCache cache)
 {
     cache.ShortcutName     = txtShortcutName.Text;
     cache.AllOrCurrentUser = radShortcutLocation.GetCheckedRadio();
 }
Exemple #2
0
 private void LoadCache(NewCustomShortcutFormCache cache)
 {
     pctCurrentIcon.Image = cache.GetIcon();
     txtShortcutName.Text = cache.ShortcutName;
     radShortcutLocation.SetCheckedRadio(cache.AllOrCurrentUser);
 }