Exemplo n.º 1
0
        public static Block BuildWordKanji(string word)
        {
            if (string.IsNullOrWhiteSpace(word))
            {
                return(new Section());
            }

            Table table = new Table()
            {
                CellSpacing = 0
            };

            table.Columns.Add(new TableColumn()
            {
                Width = new GridLength(80)
            });
            table.Columns.Add(new TableColumn()
            {
                Width = new GridLength(100)
            });
            table.Columns.Add(new TableColumn()
            {
                Width = GridLength.Auto
            });
            table.RowGroups.Add(new TableRowGroup());

            var kanjis = StringUtil.FilterCharsInString(word, CharSet.Kanji);

            foreach (var c in kanjis)
            {
                string s     = c.ToString();
                var    kanji = JazeDatabaseContext.Context.Kanjis.FirstOrDefault(k => k.Word == s);
                if (kanji != null)
                {
                    table.RowGroups[0].Rows.Add(new TableRow()
                    {
                        Cells =
                        {
                            new TableCell(new Paragraph(new Run(kanji.Word))),
                            new TableCell(new Paragraph(new Run(kanji.HanViet))),
                            new TableCell(KanjiBuilder.BuildListViMean(kanji.VieMeaning))
                        }
                    });
                }
                else
                {
                    table.RowGroups[0].Rows.Add(new TableRow()
                    {
                        Cells =
                        {
                            new TableCell(new Paragraph(new Run(s))),
                            new TableCell(),
                            new TableCell()
                        }
                    });
                }
            }

            foreach (var row in table.RowGroups[0].Rows)
            {
                foreach (var cell in row.Cells)
                {
                    cell.BorderThickness = new Thickness(1);
                    cell.BorderBrush     = Brushes.Black;
                    cell.Padding         = new Thickness(3);
                }
            }
            return(table);
        }
Exemplo n.º 2
0
 private static FlowDocument BuildKanji(Kanji kanji)
 {
     return(KanjiBuilder.Build(kanji));
 }