Skip to content

Commit

Permalink
fix: Prefix type in x:Bind codegen with global::
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinZikmund committed Sep 26, 2024
1 parent 2be9abe commit 00091e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4296,7 +4296,7 @@ string buildBindBack()
}
}

return $".BindingApply({applyBindingParameters} => /*defaultBindMode{GetDefaultBindMode()}*/ global::Uno.UI.Xaml.BindingHelper.SetBindingXBindProvider(___b, null, ___ctx => ___ctx is {GetType(dataType)} ___tctx ? ({contextFunction.Expression}) : (false, default), {buildBindBack()} {pathsArray}))";
return $".BindingApply({applyBindingParameters} => /*defaultBindMode{GetDefaultBindMode()}*/ global::Uno.UI.Xaml.BindingHelper.SetBindingXBindProvider(___b, null, ___ctx => ___ctx is global::{GetType(dataType)} ___tctx ? ({contextFunction.Expression}) : (false, default), {buildBindBack()} {pathsArray}))";
}
else
{
Expand Down

0 comments on commit 00091e7

Please sign in to comment.