Click here to Skip to main content
15,886,578 members
Articles / Mobile Apps / Windows Phone 7

The Big Bang Transcripts Viewer

Rate me:
Please Sign up or sign in to vote.
4.95/5 (52 votes)
12 Jan 2012CPOL10 min read 167.9K   1.4K   60  
Learn how to download your favorite TV transcripts and format it in your Smartphone.
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;

namespace TBBT.Converters
{
    /// <summary>
    /// A type converter for visibility and boolean values.
    /// </summary>
    public class QuoteIdToPictureColumnConverter : IValueConverter
    {
        public object Convert(
            object value,
            Type targetType,
            object parameter,
            CultureInfo culture)
        {
            int quoteId = (int)value;

            return (quoteId % 2 == 0)  ? 2 : 0;
        }


        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer Alura Cursos Online
Brazil Brazil

Comments and Discussions