Нет описания

Капралов Александр Викторович 698922a7d1 Обновить 'readme.md' 6 месяцев назад
Windows 20d6d4dc24 lab 6 месяцев назад
bin 20d6d4dc24 lab 6 месяцев назад
img 20d6d4dc24 lab 6 месяцев назад
model 20d6d4dc24 lab 6 месяцев назад
obj 20d6d4dc24 lab 6 месяцев назад
App.xaml 20d6d4dc24 lab 6 месяцев назад
App.xaml.cs 20d6d4dc24 lab 6 месяцев назад
AssemblyInfo.cs 20d6d4dc24 lab 6 месяцев назад
MainWindow.xaml 20d6d4dc24 lab 6 месяцев назад
MainWindow.xaml.cs 20d6d4dc24 lab 6 месяцев назад
WpfAppA.csproj 20d6d4dc24 lab 6 месяцев назад
WpfAppA.csproj.user 20d6d4dc24 lab 6 месяцев назад
readme.md 698922a7d1 Обновить 'readme.md' 6 месяцев назад

readme.md

wpf.windows

detailwindow.xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using WpfAppA.model;

namespace WpfAppA.Windows
{

    public partial class DetailWindow : Window
    {

        public Hero currentHero { get; set; }


        public DetailWindow(Hero currentHero)

{

    this.currentHero = currentHero;

    InitializeComponent();
            DataContext = this.currentHero;
        }
        private void ExitButton_Click(object sender, RoutedEventArgs e)
        {
            this.DialogResult = true;
        }
}
}

detailwindow.xaml

<Window x:Class="WpfAppA.Windows.DetailWindow"
        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:WpfAppA.Windows"
        mc:Ignorable="d"
        Title="DetailWindow" Height="450" Width="800">
    <Window.Resources>
        <BitmapImage 
     x:Key='defaultImage' 
     UriSource='./img/2.jpg' />
    </Window.Resources>
    <Grid RenderTransformOrigin="0.498,0.573">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="auto"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="auto"/>
        </Grid.ColumnDefinitions>
        

        <Image Source="{Binding ImageBitmap}" Grid.ColumnSpan="1" Margin="2,83,2,183"/>
        <StackPanel
            Grid.Column="1">
            <TextBlock Text="Имя:">
            <TextBlock Text="{Binding name}"/>
            </TextBlock>
            <TextBlock Text="Возраст:">
            <TextBlock Text="{Binding Age}"/>
            </TextBlock>
            <TextBlock Text="Мощь:">
            <TextBlock Text="{Binding power}"/>
            </TextBlock>
            <TextBlock Text="Раса:">
            <TextBlock Text="{Binding race}"/>
            </TextBlock>
            <TextBlock Text="Дата выхода:">
            <TextBlock Text="{Binding dateOfLastVaccination, StringFormat='dd.MM.yyyy'}"/>
            </TextBlock>
        </StackPanel>
        <TextBlock Grid.Column="2"  Text="{Binding Age}" Margin="0,2,10,0"/>
        <Button IsCancel="True" Click="ExitButton_Click" Margin="20,280,46,26" Grid.Column="1" Background="IndianRed">OK</Button>

    </Grid>
</Window>