Click here to Skip to main content
15,911,306 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Text box default text Pin
Abhinav S22-Jan-13 3:06
Abhinav S22-Jan-13 3:06 
QuestionConverting WPF windows application to Web Application. Pin
Hema Bairavan21-Jan-13 19:20
Hema Bairavan21-Jan-13 19:20 
AnswerRe: Converting WPF windows application to Web Application. Pin
HariPrasad katakam21-Jan-13 22:31
HariPrasad katakam21-Jan-13 22:31 
GeneralRe: Converting WPF windows application to Web Application. Pin
Pete O'Hanlon21-Jan-13 23:22
mvePete O'Hanlon21-Jan-13 23:22 
GeneralRe: Converting WPF windows application to Web Application. Pin
Hema Bairavan22-Jan-13 0:19
Hema Bairavan22-Jan-13 0:19 
AnswerRe: Converting WPF windows application to Web Application. Pin
Abhinav S21-Jan-13 22:49
Abhinav S21-Jan-13 22:49 
GeneralRe: Converting WPF windows application to Web Application. Pin
Hema Bairavan22-Jan-13 0:12
Hema Bairavan22-Jan-13 0:12 
AnswerRe: Converting WPF windows application to Web Application. Pin
Abhinav S22-Jan-13 0:20
Abhinav S22-Jan-13 0:20 
GeneralRe: Converting WPF windows application to Web Application. Pin
Hema Bairavan22-Jan-13 0:30
Hema Bairavan22-Jan-13 0:30 
AnswerRe: Converting WPF windows application to Web Application. Pin
Abhinav S22-Jan-13 2:58
Abhinav S22-Jan-13 2:58 
GeneralRe: Converting WPF windows application to Web Application. Pin
Hema Bairavan22-Jan-13 18:07
Hema Bairavan22-Jan-13 18:07 
GeneralRe: Converting WPF windows application to Web Application. Pin
Paulo Zemek23-Jan-13 6:22
Paulo Zemek23-Jan-13 6:22 
GeneralRe: Converting WPF windows application to Web Application. Pin
Hema Bairavan24-Jan-13 5:30
Hema Bairavan24-Jan-13 5:30 
AnswerRe: Converting WPF windows application to Web Application. Pin
Pete O'Hanlon21-Jan-13 23:27
mvePete O'Hanlon21-Jan-13 23:27 
GeneralRe: Converting WPF windows application to Web Application. Pin
Hema Bairavan22-Jan-13 0:24
Hema Bairavan22-Jan-13 0:24 
AnswerRe: Converting WPF windows application to Web Application. Pin
db7uk26-Jan-13 13:17
db7uk26-Jan-13 13:17 
QuestionGetting sqlexception "The multi-part identifier "System.Data.DataRowView" could not be bound." Pin
Geert De Vylder21-Jan-13 4:51
Geert De Vylder21-Jan-13 4:51 
AnswerRe: Getting sqlexception "The multi-part identifier "System.Data.DataRowView" could not be bound." Pin
Mycroft Holmes21-Jan-13 18:36
professionalMycroft Holmes21-Jan-13 18:36 
GeneralRe: Getting sqlexception "The multi-part identifier "System.Data.DataRowView" could not be bound." Pin
Geert De Vylder21-Jan-13 20:55
Geert De Vylder21-Jan-13 20:55 
QuestionBinding to attached property Pin
savbace20-Jan-13 21:22
savbace20-Jan-13 21:22 
QuestionRoot element is not valid for navigation Pin
Vimalsoft(Pty) Ltd19-Jan-13 19:18
professionalVimalsoft(Pty) Ltd19-Jan-13 19:18 
Good Day i have a Window in WPF defined like this

<Window x:Class="RVI_Education.Gavigator"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Gavigator" Height="673.2" Width="1304.4">
    <Frame Name="FrameWithinGrid" >
    </Frame>
</Window>


and im using it as a start up in my app.xaml

<Application x:Class="RVI_Education.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="Gavigator.xaml">
    <Application.Resources>
         
    </Application.Resources>
</Application>


and on Window loaded event i navigate to another Window

like this


public Gavigator()
    {
        InitializeComponent();
        Loaded += Gavigator_Loaded;

    }

    void Gavigator_Loaded(object sender, RoutedEventArgs e)
    {

      FrameWithinGrid.Navigate(new System.Uri("Splash.xaml",UriKind.RelativeOrAbsolute));

    }


when i load the Project i get an Error

'RVI_Education.Splash' root element is not valid for navigation.

Vuyiswa Maseko,

Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.

C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.com
vuyiswa[at]dotnetfunda.com
http://www.Dotnetfunda.com

AnswerRe: Root element is not valid for navigation Pin
Richard Deeming21-Jan-13 1:55
mveRichard Deeming21-Jan-13 1:55 
GeneralRe: Root element is not valid for navigation Pin
Vimalsoft(Pty) Ltd21-Jan-13 4:49
professionalVimalsoft(Pty) Ltd21-Jan-13 4:49 
QuestionRandom Image with array Pin
Tikha17-Jan-13 11:23
Tikha17-Jan-13 11:23 
AnswerRe: Random Image with array Pin
Pete O'Hanlon17-Jan-13 21:21
mvePete O'Hanlon17-Jan-13 21:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.