Dialog button not clickable #579
Unanswered
calincorcotoi
asked this question in
Q&A
Replies: 1 comment
-
<ui:Dialog x:Name="modal" Grid.Column="0" Grid.ColumnSpan="3" Panel.ZIndex="10" > Change the index of the user control |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
By default, when a dialog is created the option for clicking the buttons in the footer is disabled.
Is something the I miss when creating them?
Have a nice day!
<ui:Dialog x:Name="modal" Grid.Column="0" Grid.ColumnSpan="3" >
<ui:Button Content="TEST" Margin="0,10,0,0"/>
</ui:Dialog>
This event will never be hit
modal.ButtonLeftClick += (_, _) =>
{
};
Beta Was this translation helpful? Give feedback.
All reactions