我需要加快WPF中的一些中間事物的速度,並且我正在構建這個小型應用程序作爲我的學習理由。需要這個簡單的WPF單窗口加載頁面的一些指導
我收集了五張照片。每張圖片都有一些與之相關的數據:所有者,日期,大小等。
我希望能夠點擊該圖片並將該信息加載到相同窗口中顯示。我不想在新打開的窗口中加載信息。
任何關於搜索什麼的建議,甚至是關於該過程的一個小口頭步驟?
我正在使用Frame
加載最初的五張圖片,但是我不知道如何在用戶控件中註冊點擊的情況下捕獲主窗口上的點擊。
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="22" />
<RowDefinition />
</Grid.RowDefinitions>
<Menu Grid.Row="0">
<MenuItem Header="_File" />
<MenuItem Header="_Edit" />
<MenuItem Header="_View" />
<MenuItem Header="_Help" />
</Menu>
<Frame Grid.Row="1" Name="contentFrame" Source="Roster.xaml" />
</Grid>
然後在Roster.xaml:
<UserControl x:Class="OracleOfLegends.Roster"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
//Lots of goodies here.
</UserControl>