Protected: CVHolder – application to support job search
There is no excerpt because this is a protected post.
Post concerning software development.
There is no excerpt because this is a protected post.
Introduction The post is devoted to the application that is complete screen saver. Sure, screen saver is quite old technology, and there is no necessity to use it on modern displays. But from my point of view moving objects on display until computer fall to sleep looks better than stable background picture. The application bases… Read More Screen saver with Prism and cellular automata
Introduction The post is devoted to screen saver application written in Wpf with Prism pattern. Provided code is the complete application with two different animation patterns that are implemented in two modules. The application is modular and could be easily extended by adding new modules. There is an application archive screensaver_publish.zip. Full code is accessible… Read More Extendable screen saver with Prism
Introduction The post shows how to position Wpf window on secondary monitor or show two windows on two monitors. The post contains complete code and we discuss how to address several scenarios. Full code is accessible on GitHub Blog repository. There are the following disclaimers: provided code and conclusions base on empiric results, so could… Read More Wpf windows on two screens
Introduction The post is devoted to NuGet package Ikc5.Math.CellularAutomata. The library contains classes to create and investigate 2D cellular automata. There are cellular automaton classes, life algorithms and neighbors’ algorithms, cells, different interfaces’ implementation. These classes are ready for using with dependency injection container. Sources The package is open-source project, full code is accessible on… Read More NuGet package Ikc5.Math.CellularAutomata
Introduction The post is devoted to NuGet package Ikc5.Prism.Common. The library contains useful classes for Prism applications. Sources The package is open-source project, full code is accessible on GitHub NuGet repository. Package is published at NuGet Gallery, and symbol’s package is pushed to SymbolSource.org. Package Package refers to Ikc5.TypeLibrary, and is used by Ikc5.Prism.Settings packages. Logging Package contains… Read More NuGet package Ikc5.Prism.Common
Introduction The post is devoted to the Wpf application that shows (emulated) real-time data in charts. It could be used as base for monitoring application, when data service provide real data like, for example, number of http requests or CPU temperature. OxyPlot library is used for chart controls, as it is lightweight and easy to… Read More Wpf application with real-time data in OxyPlot charts
Introduction The post is devoted to the Wpf datagrid with cells that has defined fixed size but number of rows and columns is updated dynamically in order to fill all available space. For example, such grid could be used in games at infinite 2D field or implementation of cellular automaton. In the previous post Wpf… Read More Grid with dynamic number of rows and columns, part 2
The post is devoted to the Wpf datagrid with dynamically defined number of rows and columns but all cells has the same size. For example, such grid could be used in chess or checkers game for 8×8 field. I used code from some sources, for example How to populate a WPF grid based on a… Read More Grid with dynamic number of rows and columns, part 1
There exists DefaultValueAttirbute class that allows declare initial value for property. But, as it is stated in MSDN: A DefaultValueAttribute will not cause a member to be automatically initialized with the attribute’s value. You must set the initial value in your code. Briefly, there is code snippet that assign default value to property: Example of… Read More Assign value from DefaultValueAttribute