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.
How to navigate between one project file to another in visual studio 2010 for windows phone so that we can use xaml files or use other cs files in each other.........
This is what you need to do:
private void hyperlinkButton1_Click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/SecondPage.xaml", UriKind.Relative));
}
You can find in detail from here http://msdn.microsoft.com/library/windows/apps/ff626521(v=vs.105).aspx
Related
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
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.
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 am not sure where I have to start to create .NET application (C#) to "Capture Live Video from various Video Devices."
Any clue?
There is a code project project that does what you are looking for using directx.
http://www.codeproject.com/Articles/7123/Capture-Live-Video-from-various-Video-Devices
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.
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 11 years ago.
I'm looking for an control or something like to About box Java Swing in C#.
UPDATE
as in the pic:
if you're using VS, choose in menu: project > add new item > about box in visual studio installed templates.
and then:
var aboutBox = new AboutBox1();
aboutBox.ShowDialog();
I hope this help!