Author: sunamo
Structure of flow text in WPF
Starting point for this blogpost. Principle: Create something which have Blocks/Child/ListItems/RowGroups property Create something which have Inlines property Create elements which are derived from Inline Inline -> Inlines -> Blocks/Child/ListItems/RowGroups Block derived classes are these : Paragraph – Blocks Section – Blocks BlockUIContainer – Child List – ListItems Table – RowGroups
Read More Structure of flow text in WPFDatetime formats in sunamo framework
In columns Create and Parse are names of methods in DT*.cs, located in sunamo projects. This analyze was did to easy find what formats it’s available and which methods is needed write up. Date and time (with seconds) Date and time (without seconds) Date Time (without seconds) Time (with seconds) Time (with ms&s) …
Read More Datetime formats in sunamo frameworkGrid controls in Wpf
This blogpost is to see difference in use and apperance of Grid controls in WPF. Main use case is grid with checkbox in the first column and control buttons in the last. DataGrid: ListView with Grid View: Source code is to find onĀ //github.com/sunamo/GridControlsInWpf_Blog Due to no time to complete it (like ListBox or external …
Read More Grid controls in WpfBasic terms in .NET Compiler Platform (Roslyn)
I have spent many hours with Roslyn – this blogpost is result of my exploring of its infrastructure: Concepts Syntactic model – Working just with actual file Semantic model – Connection to another source files. Usually trigger compilation, so it’s expensive to hardware resources. SemanticModel.GetDeclaredSymbol() accepts declaration syntax and provides the corresponding symbol. SemanticModel.GetSymbolInfo() accepts …
Read More Basic terms in .NET Compiler Platform (Roslyn)HexCodeForAwesomeFontChar Guidelines
Welcome the dearest! On my web you can search for awesome font icons ans get values, which then simply insert to property Text, Content eg. of WPF Controls. This was done specifically for windows store/universal apps, because I did not find the library or custom solutions how to simply insert in xaml awesome icons to …
Read More HexCodeForAwesomeFontChar Guidelines