Exemplo n.º 1
0
 public string GetString(Rainmeter.Settings.InstanceSettings Instance)
 {
     // This plugin is unique as it is one of the first to not be used to display data
     // back in Rainmeter, but to request user input and use that input during batch
     // operations (and other purposes).
     //
     // However, Rainmeter requires that data be sent back, so we'll return temporary data
     // In this case, the data is whatever the user last entered into an input textbox.
     return Instance.GetTempValue("LastInput", string.Empty).ToString();
 }