Проектирование базы данных

Автор работы: Пользователь скрыл имя, 11 Сентября 2011 в 23:00, курсовая работа

Описание работы

Практическое задание на тему «Проектирование БД» подразумевает выполнение следующих задач:
определение объектов и их характеристик, которые необходимо хранить в БД (определение исходных данных для проектирования структуры БД);
разработка структуры БД;
разработка уровня доступа к данным;
создание пользовательского интерфейса для работы с БД.

Содержание работы

1. Формулировка задания 3

2. Описание БД 4

3. Описание интерфейса программы 7

3.1. Окно «Категории информационных материалов» 7

3.2. Окно «Информационные материалы» 8

3.3. Окно «Информационный материал» 9

3.4. Окно «Редактирование информационного материала» 10

3.5. Окно «Добавление информационного материала» 11

3.6. Окно «Фильтрация информационных материалов» 12

4. Перечень запросов LINQ to Entities, используемых в приложении 14

5. Листинг программы 16

App.xaml 16

CategoriesWindow.xaml 17

CategoriesWindow.xaml.cs 19

InfoMaterialAddEditWindow.xaml 22

InfoMaterialAddEditWindow.xaml.cs 23

InfoMaterialsFilterWindow.xaml 25

InfoMaterialsFilterWindow.xaml.cs 27

InfoMaterialsWindow.xaml 29

InfoMaterialsWindow.xaml.cs 30

InfoMaterialWindow.xaml 32

InfoMaterialWindow.xaml.cs 34

Convertor.cs 35

Filter.cs 36

Category.cs 38

CategoryRepository.cs 38

InfoMaterial.cs 40

InfoMaterialRepository.cs 40

InfoMaterialsDataManager.cs 42

Файлы: 1 файл

Проектирование базы данных.docx

— 625.74 Кб (Скачать файл)

                                <ColumnDefinition/>

                            </Grid.ColumnDefinitions>

                            <Grid.RowDefinitions>

                                <RowDefinition Height="26"/>

                                <RowDefinition Height="42"/>

                                <RowDefinition Height="20"/>

                                <RowDefinition Height="20"/>

                                <RowDefinition Height="20" />

                            </Grid.RowDefinitions>

                            <TextBlock Grid.Column="0" Grid.Row="0" Text="Название:"/>

                            <TextBlock Grid.Column="0" Grid.Row="1" Text="Описание:"/>

                            <TextBlock Grid.Column="0" Grid.Row="2" Text="Дата публикации:"/>

                            <TextBlock Grid.Column="0" Grid.Row="3" Text="Количество просмотров:"/>

                            <TextBlock Grid.Column="0" Grid.Row="4" Text="Рейтинг:"/>

                            <TextBlock Grid.Column="2" Grid.Row="0" Text="{Binding DataContext.Name}"/>

                            <TextBlock Grid.Column="2" Grid.Row="1" Text="{Binding DataContext.Annotation}" TextWrapping="WrapWithOverflow"/>

                            <TextBlock Grid.Column="2" Grid.Row="2" Text="{Binding DataContext.PublishDate, Converter={Core:FormatStringConverter D}}"/>

                            <TextBlock Grid.Column="2" Grid.Row="3" Text="{Binding DataContext.ViewCount}"/>

                            <TextBlock Grid.Column="2" Grid.Row="4" Text="{Binding DataContext.Rating}"/>

                        </Grid>

                    </Grid>

                </Core:MeasurePixelSnapper>

            </DataTemplate>           

        </ResourceDictionary>

    </Application.Resources>

</Application>

CategoriesWindow.xaml

<Window x:Class="WpfRDB.CategoriesWindow"

       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

       xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"

       xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"

       xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"       

       Title="Категории информационных материалов" Height="592" Width="800" Loaded="Window_Loaded" MinHeight="592"

       Icon="Images/yinyang.png" Closing="Window_Closing">

    <Grid Margin="0,0,0,0" dx:ThemeManager.ThemeName="Office2007Blue">

        <Grid.RowDefinitions>

            <RowDefinition Height="402*" />

            <RowDefinition Height="165*" />

        </Grid.RowDefinitions>    

        <dxg:GridControl Name="grdCategories" Margin="2,2,2,2">

            <dxg:GridControl.Columns>

                <dxg:GridColumn FieldName="Name">Категория</dxg:GridColumn>

                <dxg:GridColumn FieldName="BitmapSource" AllowColumnFiltering="False">

                    <dxg:GridColumn.CellTemplate>

                        <DataTemplate>

                            <Image Source="{Binding Path=Value}" HorizontalAlignment="Left" Margin="8,3,0,3" Stretch="Fill" />

                        </DataTemplate>

                    </dxg:GridColumn.CellTemplate>

                </dxg:GridColumn>               

                <dxg:GridColumn FieldName="Description" MinWidth="100" EditSettings="{dxe:MemoSettings ShowIcon=False, PopupWidth=500, PopupHeight=300, MemoTextWrapping=Wrap, MemoVerticalScrollBarVisibility=Auto}">Описание</dxg:GridColumn>

Информация о работе Проектирование базы данных