Questions tagged [modern-ui]

ModernUI for WPF is a set of controls and styles converting WPF applications into "Modern UI" Windows applications.

ModernUI for WPF is a set of controls and styles converting WPF application into a "Modern UI" Windows applications. This open source project is a spin-off of XAML Spy, the visual runtime inspector for Silverlight, Windows Phone, Windows Store and WPF.

268 questions
1
vote
2 answers

Windows 10 UWP - backward app compatibility

As was announced, modern UI applications on Windows 10 will target new Universal Windows Platform which is kind of successor of Win RT. However in regards of development there is big difference as on previous version of Windows you have target the…
marek_lani
  • 3,895
  • 4
  • 29
  • 50
1
vote
0 answers

MUI: Modify appearance of back button

How can I easily override the styling of the back button. It's currently buried in ModernWindow.xaml, and I'd prefer not to compile in all of MUI into my solution.
Mark Richman
  • 28,948
  • 25
  • 99
  • 159
1
vote
1 answer

CodedUI for Modernui application

I am trying to create codedUI test cases for ModerUI app. When I try to run the recorded test case it fails while navigating to the link. It is unable to find the control or naviga to other link. Please suggest any workaround for it. Below is the…
SandeepB
  • 11
  • 2
1
vote
3 answers

How do I determine the user's language in Visual C++?

I've been searching msdn forever now without a straight answer. Is there a way to simply get the user's language? I don't want to load any resources or anything at this point, I just want to get their language. Is there ANY simple way to do…
Mark
  • 2,082
  • 3
  • 17
  • 30
1
vote
1 answer

Modern UI - How to make a link load its content in "_top"?

I have a ModernTab control, to which I'm dynamically adding a Link: InstallationTab.Links.Add(new Link { DisplayName = "Review Configuration", Source = new Uri("/Views/InstallationProgress.xaml", UriKind.Relative) }); I'd like…
Mark Richman
  • 28,948
  • 25
  • 99
  • 159
1
vote
1 answer

Clear Navigation Stack mui wpf

I'm very new to wpf, right now, I'm using ModernUI version 1.0.6 I'm searching for a way to clear the navigation history for modernwindow. Or the way to remove the navigation button out of the modernwindow would also appreciated.
pavasornN
  • 13
  • 3
1
vote
1 answer

Add window button to dialog

Is it possible to add a Window Button ("Close", "Min", "Max") to a ModernUI Dialog? ModernDialog.ShowMessage("Dialog", "How to add window Buttons?"); I could not find any information.
peter
  • 2,103
  • 7
  • 25
  • 51
1
vote
2 answers

Cal.Message.Attach - No target found for method

I designed an interface in WPF with Caliburn.Micro. I have customized radiobuttons which are triggered a method by cal:Message.Attach property when they're checked. But when I check one of the radiobuttons having this property, I get the error of:…
Kerem Zaman
  • 529
  • 1
  • 5
  • 18
1
vote
1 answer

Re-implementing WindowManager using ModernUI + Caliburn.Micro combination

Here Caliburn.Micro was successfully combined with ModernUI. But if we want to use multiple windows we also need to re-implement Caliburn's WindowManager to work properly with ModernUI. How can it be done? UPDATE: (Additional question about…
AsValeO
  • 2,859
  • 3
  • 27
  • 64
1
vote
2 answers

Select first item by default

I'm binding ModernTab.Links to a LinkCollection and want the first Link to be selected by default. This works if I hardcode it: The LinkCollection wont be static…
peter
  • 2,103
  • 7
  • 25
  • 51
1
vote
0 answers

How to customize a ModernWindow to have a fixed ModernFrame?

I'm using Modern-UI and I have a simple ModernWindow with a UserControl as its default content and three other UserControls as its TitleLinks. What I want to do is to have a fixed Frame at the bottom of the window (Binded to a dependency property of…
Bizhan
  • 16,157
  • 9
  • 63
  • 101
1
vote
2 answers

WPF Modern UI: Changing the width of links

In my application, I'm trying to change the width of links in a ModernTab. I tried changing the Width property for the ModernTab to 300, and it currently looks like this: http://screencast.com/t/PoBGkizX The links are all truncated, so I'm looking…
Batman
  • 541
  • 4
  • 25
1
vote
1 answer

Receiving parameter in page navigation in modern ui

I use Modern UI framework, and I use page navigation feature var bs = new BBCodeBlock(); try { bs.LinkNavigator.Navigate(new Uri("../SomePage.xaml", UriKind.Relative), this); } catch (Exception error) { …
1
vote
2 answers

How to remove hover style for ListView rows?

I'm using Modern UI, and I have a ListView containing a Gridview. When I hover over or select a row, there is a background color applied to the row. How can I remove this style?
Mark Richman
  • 28,948
  • 25
  • 99
  • 159
1
vote
1 answer

NSIS Check Textbox empty not working

I'm trying to display a page in NSIS to obtain two different values. I want both to be not empty. The page actually displays altough I can't get my page leave function to check properly for empty fields. Function CCInstallOpts ReserveFile…
Hernán
  • 4,527
  • 2
  • 32
  • 47