Skip to content

Instantly share code, notes, and snippets.

View ZmorzynskiK's full-sized avatar

Krzysztof Zmorzyński ZmorzynskiK

  • INTSOL sp. z o. o.
View GitHub Profile
@ZmorzynskiK
ZmorzynskiK / MahAppsPopupWindowAction.cs
Created August 26, 2017 12:58
WPF Prism action to show MahApps popup style window
using System;
using System.Windows;
using System.Windows.Interop;
using MahApps.Metro.Controls;
using Prism.Interactivity;
using Prism.Interactivity.InteractionRequest;
public class MahAppsPopupWindowAction : PopupWindowAction
{
const int WM_SYSCOMMAND = 0x0112;
@ZmorzynskiK
ZmorzynskiK / NavigationPathManager.java
Created March 15, 2017 17:00
Simple navigation path "manager" for Android
package com.stuffleftatparty;
import java.util.ArrayDeque;
import java.util.Deque;
/**
* Created by @ZmorzynskiK on 2017-03-15.
*/
public class NavigationPathManager<T> {