This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//<Project Sdk="Microsoft.NET.Sdk"> | |
// <PropertyGroup> | |
// <TargetFramework>netcoreapp2.1</TargetFramework> | |
// <IsPackable>false</IsPackable> | |
// </PropertyGroup> | |
// <ItemGroup> | |
// <PackageReference Include="Microsoft.AspNetCore" Version="2.1.4" /> | |
// <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.3" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>File Upload example</title> | |
<link href="/Content/bootstrap.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<form action="api/Upload" method="post"> | |
<div class="form-group"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package worker; | |
import flash.display.Sprite; | |
import flash.system.*; | |
import haxe.io.*; | |
import format.swf.*; | |
/** | |
* Copied from: https://gist.github.com/profelis/8770024 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.InteropServices | |
namespace WinformUtils | |
{ | |
/// <summary> | |
/// A utility class for hiding checkboxes on | |
/// specific TreeNodes | |
/// </summary> | |
/// <author> |