Код: Выделить всё
ToggleButton tglBtnTest = Project.Current.Get("UI/MainWindow/scr1/pnlAll/tglBtnTest");//HACK
if (tglBtnTest != null) {
IUAVariable iuaVariable = InformationModel.MakeVariable
(mcstrOffOnState, OpcUa.DataTypes.Boolean);
tglBtnTest.ActiveVariable.Add(iuaVariable);
tglBtnTest.ActiveVariable.VariableChange += (s, e) => {
if (iuaVariable != null) {
iuaVariable.Value = tglBtnTest.ActiveVariable.Value;
}
};
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... ng-c-sharp