Create a Custom MessageDialog with scrolling [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have to show a popup in my Windows 8 C# app that displays a long list of information.
I want to do this in the same style as MessageDialog, but MessageDialog does not allow scrolling so I need some form of custom MessageDialog, but am not sure how to do so.

Callisto will help you with custom message dialog
GitHub
NuGet
Visual Studio Gallery

Related

How to develop multilanguage app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm developing an app that supports two languages, user can change the language tapping a textblock in top/right of the screen, the language is saved into a global variable.
what's the best way to load that text for the correct language?
Thanks
I have found these links useful in the past when I used to develop for windows phone
http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh965328.aspx
and this
http://blogs.msdn.com/b/global_developer/archive/2011/01/18/start-building-an-international-application-for-wp-7-part-i.aspx
Hope it helps!

Creating Windows 8-like window in C# with Visual Studio 2012/Blend [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'd like to create desktop application which has Windows 8 style window(like GitHub for windows). AFAIK Blend allows only to make Metro(Modern UI) apps' layouts(am I wrong?).
I'd take a look at MahApps.Metro or Elysium. They have a lot of Metro themed controls.

In C#/XAML/WPF, how do I make a button appear only if another button is clicked? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I was wondering how to do this. I am trying to learn how to make a Metro-style app for Windows Store.
Attach an Click event to the source button
In event handler mark `button2.Visibility = Visibility.Visible;'
As simple as that.

What are accelerators in C# and how do I use them? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In my online course I'm asked to put a label (lblQuestion with accelerator) and ComboBox on a form.
Putting a label and a combo box on a form is simple enough in VS 2010, but I am not sure what an accelerator is and how I use it?
For setting an accelerator you will use & character in front of the letter of your label, that you need to make available as an accelerator. See here: http://blog.csharphelper.com/2012/05/30/use-accelerators-on-labels-and-buttons-in-c.aspx for more details.

Too fuzzy text WPF on XP [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a problem: on xp in my WPF application text is too fuzzy, how can i fix this? On Windows 7 all ok!
Thanks!
If it is WPF4 try to put: TextOptions.TextFormattingMode="Display" attached properties to the window(s)
with text.

Categories