Here is the one that is actually called first.
<Window x:Class="SeeThru.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="SeeThru" Height="300" Width="300"
WindowStyle="None" AllowsTransparency="True"
Background="Transparent"
>
But I have other windows in the project that I also call from buttons on the
page. For example:
<Window x:Class="SeeThru.Clock"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="450" Width="350"
WindowStyle="None" AllowsTransparency="True"
Background="{x:Null}" Loaded="Window_Loaded">
or
<Window x:Class="SeeThru.CrazyWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="300" Width="300"
WindowStyle="None" AllowsTransparency="True"
Background="{x:Null}"
>
What causes the 1st one to be called and not the others?
Thanks,
Tom
<Application x:Class="testWPFApps.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
</Application.Resources>
</Application>
here startupUri specifies the startup file.
I think this post will help you.
Vijay chandar
"tshad" <to...@pdsa.com> wrote in message
news:#3sxNvMi...@TK2MSFTNGP02.phx.gbl...
Thanks,
Tom
"Vijay" <vijaycha...@gmail.com> wrote in message
news:91E3E504-7A01-4E3A...@microsoft.com...