ContentDialog control not working in desktop c++/winrt.
See original GitHub issuevoid FlowPanel::myButton_Click(IInspectable const&, RoutedEventArgs const&)
{
static ContentDialog dialog;
dialog.Title(winrt::box_value(L"xxx") );
dialog.Content(winrt::box_value(L"xxx") );
dialog.ShowAsync();
}
report error:
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
WinRT/C++ TextBox doesn't accept any character input in ...
I have a desktop program with a WinRT/C++ library (and Microsoft.UI.Xaml.Controls 2.8 prerelease), which in the application will bring up a ...
Read more >ContentDialog Class (Windows.UI.Xaml.Controls)
Represents a dialog box that can be customized to contain checkboxes, hyperlinks, buttons and any other XAML content.
Read more >Windows 10 XAML Tips: MessageDialog and ContentDialog
In this blog post I will explain how you can show a message dialog and content dialog in your Windows 10 apps on...
Read more >Extending Content/Message Dialog Class in UWP to Avoid ...
The Problem. Recently in my UWP project, we had this requirement of showing many dialogs at different point of events. We even had...
Read more >A deep-dive into WinUI 3 in desktop apps - Windows Blog
The WinUI 3 framework is a set of WinRT components, and while WinRT has similar types and objects as those found in .NET,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yeah! you are right ,thks, i will close this issue.
Hello! Can you let me know how you succeeded?