Skip to content
View musakasim's full-sized avatar

Block or report musakasim

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. shiro-dic-alpha shiro-dic-alpha Public

    Japanese English Dictionary and Study Helper

    C# 1

  2. musakasim.github.io musakasim.github.io Public

    CSS 1

  3. ImageSharp.Drawing ImageSharp.Drawing Public

    Forked from SixLabors/ImageSharp.Drawing

    🖊️ Extensions to ImageSharp containing a cross-platform 2D polygon manipulation API and drawing operations.

    C# 1

  4. From http://rachel53461.wordpress.co... From http://rachel53461.wordpress.com/2011/08/20/the-math-converter/
    1
    // Does a math equation on the bound value.
    2
    // Use @VALUE in your mathEquation as a substitute for bound value
    3
    // Operator order is parenthesis first, then Left-To-Right (no operator precedence)
    4
    public class MathConverter : IValueConverter
    5
    {
  5. From http://stackoverflow.com/questi... From http://stackoverflow.com/questions/3490217/how-do-i-replace-a-scrollviewer-with-a-contentpresenter-on-a-listbox
    1
    <ControlTemplate TargetType="{x:Type ListBox}">
    2
        <Border x:Name="Bd" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="1" SnapsToDevicePixels="true">
    3
            <ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
    4
        </Border>
    5
        <ControlTemplate.Triggers>