Proje C# ve DevExpress ile kodlanmıştır. Listbox'a Baş Harf Büyük Veri Ekleme
Language(Dil): C#
UI: DevExpress
Proje C# ve DevExpress ile kodlanmıştır. Listbox'a Baş Harf Büyük Veri Ekleme
Language(Dil): C#
UI: DevExpress
C# Enum sabiti ile çalışmak
enum
(numaralandırma) C# programlamada bir veri türüdür ve bir dizi adlandırılmış sabiti temsil etmek için kullanılır. Bir enum
bildirimi, bir dizi benzersiz sembolik isim (sabit) ve bunlara karşılık gelen sayısal değerler içerir. İşte enum
kullanımına örnekler:
Günlerin Numaralandırılması:
Bu örnekte, Days
adında bir enum
tanımlanmıştır ve her bir gün bir sembolik isimle temsil edilir.
Haftanın İlk Günü Belirleme:
Bu örnekte, FirstDayOfTheWeek
adında bir enum
tanımlanmıştır ve Pazartesi'nin numarası 1 olarak belirlenmiştir.
Bu örnekte, Season
adında bir enum
tanımlanmıştır ve her bir mevsim sembolik isimle temsil edilir.
enum
'lar, belirli bir kategori içindeki sabitlerin tanımlanması veya birbirine bağlı bir dizi değerin temsil edilmesi gerektiği durumlarda kullanılır. Bu, kodun okunabilirliğini artırır ve sabitlerin tutarlılığını sağlar.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace C__ve_Nesne_Yönelimli_Programlama__OOP_
{
internal class Program
{
static void Main(string[] args)
{
Shoe shoe1 = new Shoe();
shoe1.Numara = -10;
Console.WriteLine(shoe1.Numara);
shoe1.Numara = 10;
Console.WriteLine(shoe1.Numara);
Console.ReadKey();
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace C__ve_Nesne_Yönelimli_Programlama__OOP_
{
internal class Shoe
{
private int _number;
public int Numara
{
get { return _number; }
set
{
if (value > 0)
{
_number = value;
}
else
{
_number = 0;
}
}
}
}
}
Görüldüğü üzere set edilirken if blokları içerisinde gelen değerimiz sıfırdan büyükse değer set edilecektir.
My Youtube
Partial View, ASP.NET MVC'de bir sayfada başka bir sayfanın veya bölümün tekrar kullanılabilir bir parçasını oluşturmak için kullanılır. Bir model alanı içeren bir Partial View oluşturmak için aşağıdaki adımları takip edebilirsiniz.
Örnek olarak, bir "Person" modelini kullanarak bir Partial View oluşturacağız.
İlk olarak, Views/Shared
klasörü içinde yeni bir dosya oluşturun. Bu dosyanın adını örneğin _PersonPartial.cshtml
olarak belirleyebilirsiniz.
Oluşturduğunuz dosyanın içine Partial View'inizi tasarlayın. Örneğin:
Ardından, bu Partial View'i kullanmak istediğiniz sayfada aşağıdaki gibi kullanabilirsiniz. Örneğin, bir "Index.cshtml" sayfasında:
html
Burada, @Html.Partial("_PersonPartial", Model)
ifadesi, _PersonPartial.cshtml
adlı Partial View'i çağırırken, "Person" modelini de bu Partial View'e iletiyor.
Bu sayede, aynı Partial View'i başka sayfalarda da kullanabilir ve bu sayede kodunuzu daha organize bir şekilde yönetebilirsiniz.
My Youtube
Empower Your IT Journey with Expert Insights: Exploring C#, Web Programming, ASP.NET, and MVC Help Desk Solutions
Welcome to our blog dedicated to all things C#, web programming, ASP.NET, MVC, and IT help desk solutions! Whether you're a seasoned developer, an IT professional, or someone eager to delve into the world of technology, you've come to the right place.
Unlock the full potential of C# programming with our in-depth tutorials, practical tips, and expert guidance. From beginner-friendly introductions to advanced techniques, we cover everything you need to become a proficient C# developer.
Explore the ever-evolving landscape of web programming as we delve into HTML, CSS, JavaScript, and more. Stay updated on the latest trends, frameworks, and best practices shaping the world of web development.
Discover the versatility and robustness of ASP.NET and MVC frameworks through our comprehensive guides and hands-on projects. Learn how to build scalable, secure, and efficient web applications that meet the demands of modern businesses.
Navigate the complex realm of information technology help desk management with our actionable insights and proven strategies. From ticketing systems to troubleshooting techniques, we've got you covered every step of the way.
Embark on a transformative journey of learning, growth, and innovation with our blog. Whether you're looking to enhance your programming skills, stay updated on the latest industry trends, or optimize your IT help desk operations, we're here to support you every step of the way.
Don't miss out on our latest articles, tutorials, and insights. Subscribe now and take your IT journey to new heights!
My Github
https://github.com/cengizhanakgun
My Blogger
https://cengizhanakgun.blogspot.com
My Linkedin
https://tr.linkedin.com/in/cengizhanakgun
My Hasnode
https://cengizhanakgun.hashnode.dev
ASP.NET MVC'de "View", kullanıcı arayüzünün (UI) oluşturulduğu ve sunulduğu bileşendir. ASP.NET MVC uygulamalarında, model verileri (veri) bir Controller'dan bir View'e (kullanıcı arayüzü) iletilebilir ve View, bu model verilerini kullanarak kullanıcıya bilgi sunar. View, HTML, CSS ve JavaScript gibi web teknolojilerini kullanarak kullanıcı arayüzünü oluşturur ve sunar. Bu, bir web sayfasının veya web uygulamasının kullanıcıya görüntülenen kısmını temsil eder.