Skip to content

Instantly share code, notes, and snippets.

View mbcrump's full-sized avatar

Michael Crump mbcrump

View GitHub Profile
@mbcrump
mbcrump / RadListDataItem
Last active August 29, 2015 14:00
RadListDataItem Double Click Event
using System;
using System.Linq;
using System.Windows.Forms;
using Telerik.WinControls.UI;
namespace TelerikListWinForms
{
public partial class Form1 : Form
{
//Make sure you tie the radListControl to the MouseDoubleClick event handler either through the control itself or code behind.
@mbcrump
mbcrump / TelerikGettingStarted
Created March 25, 2014 15:38
Getting Started ViewController.m File
//
// ViewController.m
// GettingStarted
//
// Created by Michael Crump on 03/25/14.
// Copyright (c) 2013 Michael Crump. All rights reserved.
//
#import "ViewController.h"
@mbcrump
mbcrump / TelerikAnimations
Created March 25, 2014 15:19
Telerik Animation ViewController.m File
//
// ViewController.m
// TelerikAnimations
//
// Created by Michael Crump on 3/25/14.
// Copyright (c) 2014 Michael Crump. All rights reserved.
//
#import "ViewController.h"
@mbcrump
mbcrump / MVP2013
Last active December 28, 2015 14:49
MVP Summit 2013
Michael Crump
@mbcrump
[email protected]
-------------
All Source Code (WPF, WP8, Win 8)
http://bit.ly/HTwKWD
RadControl Bits Required
WPF/SL
@mbcrump
mbcrump / gist:6242654
Created August 15, 2013 17:16
Modern Syntax
//OLD WAY
//NSString *articleTitle = [[feeds objectAtIndex:indexPath.row] objectForKey: @"title"];
//NEW WAY
NSString *articleTitle = feeds [indexPath.row] [@"title"];
@mbcrump
mbcrump / default
Created September 1, 2012 20:51
Code Snippet
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>WorldCountriesRadComboBox</title>