Search results for query: *

  1. destro

    Question How can we schedule a pipeline for a later time using Azure Devops .net sdk services in our c# web api?

    The triggers made using data factory requires active directory access. We don't have that. We are creating triggers using TeamFoundation.Build api like so: //Create Trigger ScheduleTrigger trigger = new ScheduleTrigger()...
  2. destro

    Question How can we schedule a pipeline for a later time using Azure Devops .net sdk services in our c# web api?

    I cant use Azure Data Factory. The api mentioned in this article is not using azure devops services .net sdk. I don't have active directory access in my organization.
  3. destro

    Question How can we schedule a pipeline for a later time using Azure Devops .net sdk services in our c# web api?

    I can see abstract class BuildTrigger in Microsoft.TeamFoundation.Build.WebApi that contains property DefinitionTriggerType enum with schedule or 8 number. but how can I implement it to my pipeline before queuing? This is how I run pipeline: var credential = new...
  4. destro

    Question How can we schedule a pipeline for a later time using Azure Devops .net sdk services in our c# web api?

    @Skydiver Thanks for the response. I undestand your point and we have continuous integration applied to our Pipeline but our client is asking that we make a feature for scheduling these pipelines as well. We did it all through Team Foundation and Visual Studio service api in a c# api but...
  5. destro

    Question How can we schedule a pipeline for a later time using Azure Devops .net sdk services in our c# web api?

    Hello, I am working with Microsoft.VisualStudio.Services.WebApi & Microsoft.TeamFoundation.Build.WebApi. I can trigger pipeline using buildClient.QueueBuildAsync(build).Wait(); but unable to find a way to schedule a pipeline for a later time. Can you please point us in the right direction...
  6. destro

    Resolved How can I notify source property about the changes made in Wpf DataGrid?

    Yes it works. Thanks a lot. RowChanged event is subscribed to the DataTable and changes in rows are seen in my view Model. So, what I can understand from this is until row changed event is triggered we can't view Grid changes in the DataTable?
  7. destro

    Resolved How can I notify source property about the changes made in Wpf DataGrid?

    Actually, you are adding rows from runtime windows constructor in c# which works fine but my problem is when I changed the data in the DataGrid(On the UI) itself, it is not notified. Why are changes in UI DataGrid not detecting in the ViewModel? I have binding set as two-way.
  8. destro

    Resolved How can I notify source property about the changes made in Wpf DataGrid?

    RowChanged event is what I haven't implemented yet. Will do that and let you know. Thanks for the suggestion.
  9. destro

    Resolved How can I notify source property about the changes made in Wpf DataGrid?

    I have used observable collection and that notifies absolutely fine. I was curious to know why it wouldn't be same with dataTable?
  10. destro

    Resolved How can I notify source property about the changes made in Wpf DataGrid?

    I have a Datagrid bound to Datatable through Dependency property. I am unable to retrieve changes I make in datagrid even when I have set binding mode as two way. What are the best possible ways to update changes back to Source DataTable when dataGrid is edited? I know I can use...
  11. destro

    Question How do I get the values in all columns of a row with button click event in code behind?

    I have an ItemTemplate in my WPF app main window which shows the details of all personnel in SQLite database. Each row has 8 columns and one of them is the delete button. I want to get the values inside all fields of the row whose delete button is clicked on in my code-behind. I have...
  12. destro

    Resolved How can I turn on both vertical and horizontal borders for the itemTemplate Control?

    Thanks a lot.. i Did exactly that. Settings borders around labels and button in the template. Works now. Thanks
  13. destro

    Resolved How can I turn on both vertical and horizontal borders for the itemTemplate Control?

    I created the item template control and set its border thickness and color in Data Template. This is my ItemTemplate code: <ItemsControl x:Name="VimshottariDasha" Margin="-10,83,-124,-267" FontSize="16" Grid.ColumnSpan="3" BorderThickness="0">...
  14. destro

    Resolved How can I bind my objects horizontally using itemTemplate?

    Yeah it was binding all objects in first colums.. but I think question didn't clear itself.. i wanted them in different columns.. single column for single object .. i did it by changing panel orientation to horizontal.
  15. destro

    Resolved How can I bind my objects horizontally using itemTemplate?

    I have an observablecollection of class type as follows: public ObservableCollection<selectedLevel> selectedLevels { get; set; } selectedLevels = new ObservableCollection<selectedLevel>(); public class selectedLevel { public string Level { get; set; } public...
  16. destro

    Question How can I bind the property of class Object with a textblock?

    So textBlock cannot handle multiple items? I thought it could. I also tried with list view. What control handle multiple items? I am sorry I am still learning to get myself familiar with xaml binding
  17. destro

    Question How can I bind the property of class Object with a textblock?

    I have two classes in my script and an observable collection of secondary class type. The method in the main class adds several objects of Person class type in an observable collection defined and initialized in primary class as follows: public class PrimaryClass : BaseViewModel {...
  18. destro

    Answered Set color of substring without using richtext box?

    @Sheepings @Skydiver .. the degrees are also not constant they keep changing. Can anyone of you give me an example for a style or some kind of data trigger to map the planet colors ??
  19. destro

    Answered Set color of substring without using richtext box?

    Okay its not easy as it seems. Suppose "Saturn 19 + "\xb0" + "\n" + "Jupiter 25" + "\xb0" + "\n" + "Venus 65" + "\xb0" + "\n" + "Mercury 76" + "\xb0" + "\n" is one single string displayed in a label as: Saturn 19° Jupiter 25° Venus 65° Mercury 76° but I want to display it as Saturn 19°...
Back
Top Bottom