Skip to content

Commit

Permalink
Merge pull request #402 from joecare99/CSharpBible
Browse files Browse the repository at this point in the history
C sharp bible
  • Loading branch information
joecare99 authored May 13, 2024
2 parents 39faa37 + 78f31e7 commit aadeaf8
Show file tree
Hide file tree
Showing 56 changed files with 2,654 additions and 1,009 deletions.
4 changes: 2 additions & 2 deletions CSharpBible/Graphics/All_Graphics/Models/AllExampleModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ public partial class AllExampleModel : ObservableObject, ITemplateModel
("DrawGrid_CT", typeof(MVVM_Converter_CTDrawGrid.Views.PlotFrame), null),
("DrawGrid2_CT", typeof(MVVM_Converter_CTDrawGrid2.Views.PlotFrame), null),
("ImgGrid_CT", typeof(MVVM_Converter_CTImgGrid.Views.PlotFrame), null),
("DrawGrid", typeof(MVVM_Converter_DrawGrid.Views.PlotFrame), null),
("DrawGrid2", typeof(MVVM_Converter_DrawGrid2.View.PlotFrame), null),
("DrawGrid", typeof(MVVM_Converter_DrawGrid.Views.DrawGridView), null),
("DrawGrid2", typeof(MVVM_Converter_DrawGrid2.Views.DrawGridView), null),
("ImgGrid", typeof(MVVM_Converter_ImgGrid.Views.ImgGridView), null),
("ImgGrid2", typeof(MVVM_Converter_ImgGrid2.Views.ImgGridView), null),
("ImageHandling", typeof(MVVM_ImageHandling.Views.TemplateView), null),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class ListItemToContentConverter : IValueConverter
{
tv.Items.Add(new TabItem() { Header = Title, Content = new TextBox() { Text = ex.Message, IsReadOnly = true, VerticalScrollBarVisibility = ScrollBarVisibility.Visible } });
}
if (d.Keys.FirstOrDefault((o) => o.EndsWith("View")) is string xaml)
if (d.Keys.FirstOrDefault((o) => o.EndsWith("Views")) is string xaml)
{
tv.Items.Add(new TabItem()
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit aadeaf8

Please sign in to comment.