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
using DevExpress.Xpf.Docking; | |
using Eigen.Infrastructure.Docking; | |
using Eigen.Infrastructure.Events; | |
using Eigen.Infrastructure.Events.Otc; | |
using Eigen.Infrastructure.Helpers; | |
using Eigen.Infrastructure.Services; | |
using Eigen.Infrastructure.Services.Docking; | |
using Eigen.Infrastructure.ViewModels; | |
using Microsoft.Practices.Prism.Events; | |
using Microsoft.Practices.Prism.Regions; |
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
"CompanyList" : [ | |
{ | |
"Name": "Optiim", | |
"Address": "Blablala", | |
"PhoneNumber": "0123456789", | |
}, | |
{ | |
"Name": "Matriks", | |
"Address": "Blablala", | |
"PhoneNumber": "0123456789", |
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
using Snake.Components; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Runtime.InteropServices.WindowsRuntime; | |
using Windows.Foundation; | |
using Windows.Foundation.Collections; | |
using Windows.UI.Xaml; | |
using Windows.UI.Xaml.Controls; |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.IO; | |
using System.Linq; | |
using System.Runtime.InteropServices.WindowsRuntime; | |
using Windows.Foundation; | |
using Windows.Foundation.Collections; | |
using Windows.UI; | |
using Windows.UI.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
<UserControl | |
x:Class="Snake.Components.Pixel" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="using:Snake.Components" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d" | |
d:DesignHeight="100" | |
d:DesignWidth="100"> |
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
<Page | |
x:Class="Snake.GamePage" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="using:Snake" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d" | |
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> |
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
int getNumbers(nodePtr *ptr) | |
{ | |
nodePtr newPtr,beforePtr,currentPtr; | |
newPtr=malloc(sizeof(Node)); | |
int num1,num2,temp,temp1; | |
printf("Enter First Number :"); | |
scanf("%d",&num1); | |
printf("Enter Second Number :"); |
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
#region NotifyPropertyChanged Metodu | |
public event PropertyChangedEventHandler PropertyChanged; | |
public void NotifyPropertyChanged(String propertyName) | |
{ | |
PropertyChangedEventHandler handler = PropertyChanged; | |
if (null != handler) | |
{ | |
handler(this, new PropertyChangedEventArgs(propertyName)); | |
} |
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="contacts2.aspx.cs" Inherits="TurcaSoftRehber.contacts2" %> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head runat="server"> | |
<title>www.aspnetornekleri.com Gridview XML işlemleri</title> | |
<!--jQuery--> | |
<script src="js/jquery-2.1.4.min.js"></script> | |