This file contains hidden or 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
import { html } from '@polymer/polymer/lib/utils/html-tag'; | |
import { GestureEventListeners } from '@polymer/polymer/lib/mixins/gesture-event-listeners'; | |
import { PolymerElement } from '@polymer/polymer/polymer-element'; | |
import { dom } from '@fortawesome/fontawesome-svg-core/index.es'; | |
import { ImageDTO } from '../../../api/typescripttypes/MCC.Common.ServiceInterfaces.DTO'; | |
import '../../../helper/stylesheetHelper.js'; | |
import { checkSecurityAnswerCode } from '../../checkAnswerCode'; | |
import { UUID } from '../../../libs/uuid/uuid'; | |
import { cropperScriptName } from '../../../externalScripNames'; | |
import { MccImage } from '../../mcc-image'; |
This file contains hidden or 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
you need to add | |
<base href="app://./" /> to your head section |
This file contains hidden or 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
<Query Kind="Program" /> | |
private string[] projectExtensionExclusions = new[] { ".vdproj", ".ndproj", ".wdproj", ".shfbproj" }; | |
private string rootFolder = @"F:\csharp\git\mcc5\MCC.V1.0"; | |
private string outputFolder = @"F:\csharp\git\mcc5\"; | |
private string nugetFolder = @"C:\Users\jkuehner\.nuget\packages\"; | |
private int intend = 4; | |
void Main() |
This file contains hidden or 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
.namespace ICSharpCode.WpfDesign.Designer.themes | |
{ | |
.class public auto ansi VersionedAssemblyResourceDictionary | |
extends [PresentationFramework]System.Windows.ResourceDictionary | |
implements [System]System.ComponentModel.ISupportInitialize | |
{ | |
.method private hidebysig specialname rtspecialname static void .cctor() cil managed | |
{ | |
} |
This file contains hidden or 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
Test Cases: | |
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | |
<Canvas> | |
<Button Content="Button" | |
Width="75" | |
Height="23" | |
Canvas.Left="128" | |
Canvas.Top="97" /> |
This file contains hidden or 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
Source/Data/DataProvider/SqlDataProviderBase.cs | 8 +++++--- | |
1 file changed, 5 insertions(+), 3 deletions(-) | |
diff --git a/Source/Data/DataProvider/SqlDataProviderBase.cs b/Source/Data/DataProvider/SqlDataProviderBase.cs | |
index 9384602..2ef192e 100644 | |
--- a/Source/Data/DataProvider/SqlDataProviderBase.cs | |
+++ b/Source/Data/DataProvider/SqlDataProviderBase.cs | |
@@ -260,9 +260,11 @@ namespace BLToolkit.Data.DataProvider | |
DestinationTableName = tbl, | |
}; |
This file contains hidden or 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
Source/Data/DataProvider/OdpDataProvider.cs | 4 +++- | |
1 file changed, 3 insertions(+), 1 deletion(-) | |
diff --git a/Source/Data/DataProvider/OdpDataProvider.cs b/Source/Data/DataProvider/OdpDataProvider.cs | |
index c7234ca..6274527 100644 | |
--- a/Source/Data/DataProvider/OdpDataProvider.cs | |
+++ b/Source/Data/DataProvider/OdpDataProvider.cs | |
@@ -1629,6 +1629,7 @@ namespace BLToolkit.Data.DataProvider | |
var sp = new OracleSqlProvider(); | |
var n = 0; |
This file contains hidden or 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
Source/Data/DataProvider/OdpDataProvider.cs | 17 +++++++++++++---- | |
1 file changed, 13 insertions(+), 4 deletions(-) | |
diff --git a/Source/Data/DataProvider/OdpDataProvider.cs b/Source/Data/DataProvider/OdpDataProvider.cs | |
index df5f014..f69a080 100644 | |
--- a/Source/Data/DataProvider/OdpDataProvider.cs | |
+++ b/Source/Data/DataProvider/OdpDataProvider.cs | |
@@ -1624,6 +1624,8 @@ namespace BLToolkit.Data.DataProvider | |
//.Replace(" ", " ") | |
+ ") VALUES ("; |
This file contains hidden or 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
public class PageUriLocator | |
{ | |
public static string GetUri<T>() where T : Page | |
{ | |
var typeName = typeof(T).Name; | |
var allXamlFiles = ReadAssemblyResource(typeof(T).Assembly); | |
var fileName = new Regex(@"/" + typeName.ToLower() + @"\.xaml"); |
This file contains hidden or 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
# HG changeset patch | |
# User jkuehner | |
# Date 1373633404 -7200 | |
# Fri Jul 12 14:50:04 2013 +0200 | |
# Node ID 66606f655bdc1f2a6208c6ae4cf02289cefebc5e | |
# Parent f57b80cbd9298a4e195c080cfb97ffae12951fca | |
Support for Changing ItemsSource | |
diff -r f57b80cbd929 -r 66606f655bdc Source/Examples/ItemsGrid/FeaturesDemo/Examples/ViewModel.cs | |
--- a/Source/Examples/ItemsGrid/FeaturesDemo/Examples/ViewModel.cs Fri Jul 12 14:08:19 2013 +0200 |
NewerOlder