我想将键值存储到列表或字典中,以便在需要时可以根据需要更改它们。
我正在抓住这样的关键媒体,现在。
productionserver:7777/...
有没有办法可以将Key.D1存储到像这样的var中,以及如何,因为有时我有超过1个轨道和不同的Key绑定。提前谢谢。
if (e.Key == Key.D1)
{
if ((trackstatus[1].IsReserved == true) && (trackstatus[1].IsReady == true))
{
(alltimers[0] as stopwatch).SwitchOn();
trackstatus[1].IsReady = false;
}
}