The Wayback Machine - https://web.archive.org/web/20200715011625/https://github.com/topics/caliburn-micro
Skip to content
#

caliburn-micro

Here are 59 public repositories matching this topic...

simgar
simgar commented Nov 17, 2018

To recreate:

  1. I downloaded the ZIP of MvvmFx from the Clone or Download button.
  2. I 'Extracted all' to D:\Source\MvvmFx.
  3. In VIsual Studio 2015, I opened MvvmFx.shfbproj from 'D:\Source\MvvmFx\MvvmFx-master\Documentation\Binding'.
    • A 'One-way upgrade' was necessary.
  4. I built the solution and got two warnings and one error:
    Warning - Unable to locate any documentation sources
bug

Open Source application built for windows using C# and XAML. Search for movies based on your mood as well as a ton of other search and filtering options. It is built to be intuitive with the purpose of saving you from scrolling through never ending lists of movie suggestions. Targetting specific actors whilst selecting your mood and filtering by year are amongst the many awesome features you will find.

  • Updated Sep 16, 2018
  • C#

A library that provide the following cross platform features: -Direct bind of the events (in your views) to the methods or commands (in your view models) in your XAML code -Creating a preview of your view model at design time -Easy way of creating commands in your view models.

  • Updated May 2, 2019
  • C#
dmitrybublik
dmitrybublik commented Dec 14, 2016

TestStack.White.UIItems.ListViewRow cannot be selected normally. The method Select() doesn't work. For selection emultaion we use trick:

listViewRow.Focus();
listViewRow.Cells[0].Click();

But this trick works unstable. It is better add big delay between Focus() and Click():

listViewRow.Focus();
Task.Delay(1000).Wait();
listViewRow.Cells[0].Click();

Improve this page

Add a description, image, and links to the caliburn-micro topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the caliburn-micro topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.