Adds a link limit and UI to device list (#11017)
* adds a link limit to device list * locale strings * uhhh what's efcore doing there * adds a UI for device list on the device * merge conflict fixing
This commit is contained in:
@@ -75,8 +75,15 @@ public sealed class NetworkConfiguratorBoundUserInterface : BoundUserInterface
|
||||
{
|
||||
base.UpdateState(state);
|
||||
|
||||
var castState = (NetworkConfiguratorUserInterfaceState) state;
|
||||
_listMenu?.UpdateState(castState);
|
||||
switch (state)
|
||||
{
|
||||
case NetworkConfiguratorUserInterfaceState configState:
|
||||
_listMenu?.UpdateState(configState);
|
||||
break;
|
||||
case DeviceListUserInterfaceState listState:
|
||||
_configurationMenu?.UpdateState(listState);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
protected override void ReceiveMessage(BoundUserInterfaceMessage message)
|
||||
|
||||
Reference in New Issue
Block a user