C#public IdeologiesWindow(MenuWindow menu){ this.menu = menu; data = menu.projectData; settings = menu.settingData; InitializeComponent();}
<Window x:Class="LOTRModdingProgram.Windows.IdeologiesWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:LOTRModdingProgram.Windows" mc:Ignorable="d" Title="IdeologiesWindow" Height="850" Width="1200"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="79*"/> <RowDefinition Height="756*"/> </Grid.RowDefinitions> <ListBox x:Name="list_ideologies" Margin="0,0,1031,10" Grid.RowSpan="2" DisplayMemberPath="name" ItemsSource="{Binding data.ideologies}"/> </Grid></Window>